ActuallyAdditions/build.gradle

118 lines
2.4 KiB
Groovy
Raw Normal View History

2014-11-07 14:19:05 +01:00
buildscript {
repositories {
2016-01-07 18:20:59 +01:00
jcenter()
2014-11-07 14:19:05 +01:00
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
}
}
dependencies {
2017-06-17 00:48:49 +02:00
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
2014-11-07 14:19:05 +01:00
}
}
2016-05-19 20:05:12 +02:00
2016-01-07 18:20:59 +01:00
apply plugin: 'net.minecraftforge.gradle.forge'
2016-05-19 20:05:12 +02:00
apply plugin: 'idea'
2014-11-07 14:19:05 +01:00
2017-06-29 21:04:44 +02:00
version = "1.12-r113"
2015-12-30 22:02:15 +01:00
group = "de.ellpeck.actuallyadditions"
2015-03-07 12:51:28 +01:00
archivesBaseName = "ActuallyAdditions"
2014-11-07 14:19:05 +01:00
2016-07-31 16:30:37 +02:00
if(hasProperty('buildnumber')){
version = "${version}-${this.properties['buildnumber']}"
}
2014-11-07 14:19:05 +01:00
minecraft {
version = "1.12-14.21.1.2400"
2014-11-07 14:19:05 +01:00
runDir = "idea"
mappings = "snapshot_20170706"
2016-01-10 20:16:19 +01:00
makeObfSourceJar = false
2016-03-18 23:47:22 +01:00
//useDepAts = true
2016-01-07 18:20:59 +01:00
replaceIn "ModUtil.java"
2015-11-29 13:17:45 +01:00
replace "@VERSION@", project.version.toString()
2014-11-07 14:19:05 +01:00
}
2015-04-26 20:07:57 +02:00
repositories {
2016-01-16 20:06:25 +01:00
maven {
url "http://dvs1.progwml6.com/files/maven"
}
2016-06-17 14:00:52 +02:00
maven {
url "http://maven.epoxide.xyz"
}
maven {
url "https://dl.bintray.com/cyclopsmc/dev/"
}
2015-04-26 20:07:57 +02:00
}
dependencies {
2017-06-17 00:48:49 +02:00
compile "net.darkhax.tesla:Tesla-1.12:1.0.59"
deobfCompile "mezz.jei:jei_1.12:4.7.0.68"
compileOnly "org.cyclops.commoncapabilities:CommonCapabilities:1.11.2-1.3.3-115"
2014-11-07 14:19:05 +01:00
}
processResources {
2014-11-07 14:19:05 +01:00
inputs.property "version", project.version
inputs.property "mcversion", project.minecraft.version
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
2015-10-03 22:13:57 +02:00
expand 'version': project.version, 'mcversion': project.minecraft.version
2014-11-07 14:19:05 +01:00
}
2015-10-03 22:13:57 +02:00
2014-11-07 14:19:05 +01:00
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
}
2015-01-05 22:50:20 +01:00
2016-05-19 20:05:12 +02:00
jar {
}
task deobfJar(type: Jar) {
from sourceSets.main.output
2016-05-19 20:05:12 +02:00
from sourceSets.main.java
classifier = 'dev'
}
task apiJar(type: Jar) {
from sourceSets.main.output
from sourceSets.main.java
classifier = 'api'
include 'de/ellpeck/actuallyadditions/api/**'
2016-07-31 16:30:37 +02:00
}
javadoc {
include 'de/ellpeck/actuallyadditions/api/**'
}
task javadocJar(type: Jar, dependsOn: javadoc) {
from 'build/docs/javadoc'
classifier 'javadoc'
}
task sourcesJar(type: Jar) {
from sourceSets.main.java
classifier = 'sources'
}
apply plugin: 'maven-publish'
publishing {
publications {
mavenJava(MavenPublication) {
artifact jar
artifact apiJar
artifact javadocJar
artifact sourcesJar
artifact deobfJar
}
}
repositories {
maven {
url "file:///srv/nginx/maven"
}
}
}