2016-08-16 22:29:10 +00:00
|
|
|
plugins {
|
2018-11-03 13:01:34 +00:00
|
|
|
id 'java'
|
|
|
|
id 'maven-publish'
|
|
|
|
id 'java-gradle-plugin'
|
|
|
|
id 'idea'
|
|
|
|
id 'eclipse'
|
2016-08-15 10:22:14 +00:00
|
|
|
}
|
|
|
|
|
2016-08-16 22:29:10 +00:00
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
|
|
|
|
2018-10-22 18:25:18 +00:00
|
|
|
group = 'net.fabricmc'
|
2018-05-11 20:57:42 +00:00
|
|
|
archivesBaseName = project.name
|
2018-12-12 16:09:48 +00:00
|
|
|
version = '0.1.0-SNAPSHOT'
|
2018-11-03 18:03:43 +00:00
|
|
|
|
|
|
|
def build = "local"
|
|
|
|
def ENV = System.getenv()
|
|
|
|
if (ENV.BUILD_NUMBER) {
|
|
|
|
build = "jenkins #${ENV.BUILD_NUMBER}"
|
|
|
|
}
|
|
|
|
|
2016-08-15 10:22:14 +00:00
|
|
|
repositories {
|
2018-11-03 13:01:34 +00:00
|
|
|
mavenCentral()
|
2016-08-21 15:11:03 +00:00
|
|
|
maven {
|
2018-12-09 07:21:32 +00:00
|
|
|
name = "Fabric"
|
|
|
|
url = 'https://maven.fabricmc.net/'
|
2016-08-21 15:11:03 +00:00
|
|
|
}
|
2016-08-15 10:22:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-11-03 13:01:34 +00:00
|
|
|
implementation gradleApi()
|
2018-10-22 18:53:07 +00:00
|
|
|
|
2018-11-04 00:27:55 +00:00
|
|
|
implementation ('commons-io:commons-io:2.6')
|
|
|
|
implementation ('org.zeroturnaround:zt-zip:1.13')
|
|
|
|
implementation ('com.google.code.gson:gson:2.8.5')
|
2018-11-30 20:16:42 +00:00
|
|
|
implementation ('com.google.guava:guava:27.0.1-jre')
|
2018-12-20 11:32:02 +00:00
|
|
|
implementation ('net.fabricmc:stitch:0.1.0.29')
|
|
|
|
implementation ('net.fabricmc:tiny-remapper:0.1.0.22') {
|
2018-11-03 13:01:34 +00:00
|
|
|
transitive = false
|
|
|
|
}
|
2018-12-01 09:52:17 +00:00
|
|
|
// implementation ('org.benf:cfr:0.136')
|
|
|
|
implementation ('org.jetbrains:intellij-fernflower:1.0.0.2')
|
2016-08-15 10:22:14 +00:00
|
|
|
|
2018-12-15 13:33:25 +00:00
|
|
|
implementation ('net.fabricmc:sponge-mixin:0.7.11.10') {
|
2018-11-03 13:01:34 +00:00
|
|
|
exclude module: 'launchwrapper'
|
|
|
|
exclude module: 'guava'
|
|
|
|
}
|
2016-08-15 10:22:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
2018-11-03 18:03:43 +00:00
|
|
|
manifest {
|
2018-11-05 10:57:29 +00:00
|
|
|
attributes 'Implementation-Version': version + " Build(" + build + ")"
|
2018-11-03 18:03:43 +00:00
|
|
|
}
|
2016-08-15 10:22:14 +00:00
|
|
|
}
|
|
|
|
|
2018-11-04 00:27:55 +00:00
|
|
|
task sourcesJar(type: Jar, dependsOn: classes) {
|
|
|
|
classifier = 'sources'
|
|
|
|
from sourceSets.main.allSource
|
|
|
|
}
|
|
|
|
|
|
|
|
task javadocJar(type: Jar, dependsOn: javadoc) {
|
|
|
|
classifier = 'javadoc'
|
|
|
|
from javadoc.destinationDir
|
|
|
|
}
|
|
|
|
|
2018-10-27 14:14:05 +00:00
|
|
|
apply from: 'https://github.com/FabricMC/fabric-docs/raw/master/gradle/license.gradle'
|
2016-08-16 22:29:10 +00:00
|
|
|
|
|
|
|
task wrapper(type: Wrapper) {
|
2018-11-03 13:01:34 +00:00
|
|
|
gradleVersion = '4.10.2'
|
|
|
|
}
|
|
|
|
|
|
|
|
gradlePlugin {
|
|
|
|
plugins {
|
|
|
|
register("fabricLoom") {
|
|
|
|
id = "fabric-loom"
|
|
|
|
implementationClass = "net.fabricmc.loom.LoomGradlePlugin"
|
|
|
|
}
|
|
|
|
}
|
2018-05-14 10:50:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
2018-11-04 00:27:55 +00:00
|
|
|
plugin(MavenPublication) { publication ->
|
2018-08-10 17:15:05 +00:00
|
|
|
groupId project.group
|
2018-05-14 10:50:02 +00:00
|
|
|
artifactId project.archivesBaseName
|
|
|
|
version project.version
|
|
|
|
|
2018-11-04 00:27:55 +00:00
|
|
|
from components["java"]
|
|
|
|
|
|
|
|
artifact sourcesJar
|
|
|
|
artifact javadocJar
|
2018-05-14 10:50:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
url "http://mavenupload.modmuss50.me/"
|
|
|
|
if (project.hasProperty('mavenPass')) {
|
|
|
|
credentials {
|
|
|
|
username 'buildslave'
|
|
|
|
password project.getProperty('mavenPass')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-11-03 15:38:19 +00:00
|
|
|
}
|