ActuallyAdditions/build.gradle

143 lines
3.6 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 {
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true
2014-11-07 14:19:05 +01:00
}
}
2016-05-19 20:05:12 +02:00
apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'eclipse'
2016-05-19 20:05:12 +02:00
apply plugin: 'idea'
2014-11-07 14:19:05 +01:00
2019-11-08 02:26:53 +01:00
version = "2.0.0"
2015-12-30 22:02:15 +01:00
group = "de.ellpeck.actuallyadditions"
2019-11-08 02:26:53 +01:00
archivesBaseName = "ActuallyAdditions-1.14.4"
2014-11-07 14:19:05 +01:00
2019-11-08 02:26:53 +01:00
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8'
2016-07-31 16:30:37 +02:00
2014-11-07 14:19:05 +01:00
minecraft {
mappings channel: "snapshot", version: "20191107-1.14.3"
runs {
client = {
2019-11-08 02:26:53 +01:00
properties 'forge.logging.markers': ''
properties 'forge.logging.console.level': 'debug'
workingDirectory project.file('run').canonicalPath
source sourceSets.main
}
server = {
2019-11-08 02:26:53 +01:00
properties 'forge.logging.markers': ''
properties 'forge.logging.console.level': 'debug'
workingDirectory project.file('run').canonicalPath
source sourceSets.main
}
data = {
workingDirectory project.file("run/data").canonicalPath
args "--mod", "actuallyadditions", "--all", "--output", "\"" + file("src/generated/resources").toString() + "\"", "--validate", "--existing", "\"" + sourceSets.main.resources.srcDirs[0] + "\""
mods {
actuallyadditions {
source sourceSets.main
}
}
}
}
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-11-08 02:26:53 +01:00
url "http://dvs1.progwml6.com/files/maven"
}
maven {
url "http://tehnut.info/maven"
}
2015-04-26 20:07:57 +02:00
}
dependencies {
2019-11-08 02:26:53 +01:00
minecraft 'net.minecraftforge:forge:1.14.4-28.1.86'
compile fg.deobf('mezz.jei:jei-1.14.4:+')
compile fg.deobf('mcp.mobius.waila:Hwyla:1.10+')
compile fileTree(dir: 'libs', include: '*.jar')
2014-11-07 14:19:05 +01:00
}
2019-11-08 02:26:53 +01:00
jar {
manifest {
attributes(["Specification-Title": "actuallyadditions",
"Specification-Vendor": "Ellpeck",
"Specification-Version": "24.0",
"Implementation-Title": project.name,
"Implementation-Version": "${version}",
"Implementation-Vendor" :"Ellpeck",
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")],)
}
}
/*TODO: Re-evaluate
def normalManifest = {
attributes(
"Built-On": "1.14.4",
"Implementation-Title": "ActuallyAdditions",
"Implementation-Version": project.version,
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
)
2014-11-07 14:19:05 +01:00
}
2015-01-05 22:50:20 +01:00
2016-05-19 20:05:12 +02:00
jar {
exclude(".cache")
manifest normalManifest
2016-05-19 20:05:12 +02:00
}
task deobfJar(type: Jar) {
from sourceSets.main.output
2016-05-19 20:05:12 +02:00
from sourceSets.main.java
classifier = 'dev'
exclude(".cache")
manifest normalManifest
}
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"
}
}
2019-11-08 02:26:53 +01:00
}
*/