ActuallyAdditions/build.gradle

115 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
2019-08-30 01:00:22 +02:00
version = "1.12.2-r150"
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 {
2019-05-02 09:08:06 +02:00
version = "1.12.2-14.23.5.2836"
2017-08-23 02:01:54 +02:00
runDir = "run"
2019-05-02 09:08:06 +02:00
mappings = "stable_39"
2018-08-04 04:22:20 +02:00
makeObfSourceJar = false
2018-05-10 11:38:58 +02:00
replaceIn "ActuallyAdditions.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 {
2019-05-02 09:08:06 +02:00
url "https://dvs1.progwml6.com/files/maven"
}
maven {
url "http://tehnut.info/maven"
}
maven {
url "https://dl.bintray.com/cyclopsmc/dev/"
}
2015-04-26 20:07:57 +02:00
}
dependencies {
2018-03-07 03:08:25 +01:00
deobfCompile "mezz.jei:jei_1.12.2:+"
2019-05-02 09:08:06 +02:00
deobfCompile "mcp.mobius.waila:Hwyla:1.8+"
deobfCompile ("org.cyclops.commoncapabilities:CommonCapabilities:1.12.2-+")
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"
}
}
}