fabric-loom/build.gradle

119 lines
2.4 KiB
Groovy
Raw Normal View History

plugins {
id 'java'
id 'maven-publish'
id 'java-gradle-plugin'
id 'idea'
id 'eclipse'
id 'groovy'
2016-08-15 10:22:14 +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
2019-05-27 20:31:32 +00:00
version = '0.2.4-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 {
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 {
implementation gradleApi()
2018-10-22 18:53:07 +00:00
// libraries
implementation ('commons-io:commons-io:2.6')
implementation ('org.zeroturnaround:zt-zip:1.13')
implementation ('com.google.code.gson:gson:2.8.5')
2019-04-07 11:33:48 +00:00
implementation ('com.google.guava:guava:27.1-jre')
// game handling utils
implementation ('net.fabricmc:stitch:0.1.2.50') {
2019-02-12 19:32:42 +00:00
exclude module: 'enigma'
}
// tinyfile management
2019-04-21 09:37:16 +00:00
implementation ('net.fabricmc:tiny-remapper:0.1.0.33') {
transitive = false
}
implementation ('net.fabricmc:fabric-mixin-compile-extensions:0.1.0.+')
2018-12-18 22:36:22 +00:00
// decompilers
implementation ('net.fabricmc:procyon-fabric-compilertools:0.5.33.+')
implementation ('org.jetbrains:intellij-fernflower:1.0.0.8')
// source code remapping
2018-12-22 16:08:34 +00:00
implementation ('org.cadixdev:mercury:0.1.0.fabric-SNAPSHOT')
2018-12-18 22:36:22 +00:00
// Testing
testImplementation(gradleTestKit())
testImplementation("org.spockframework:spock-core:1.3-groovy-2.5")
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
}
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'
2019-04-19 19:56:58 +00:00
license {
exclude '**/loom/util/DownloadUtil.java'
}
gradlePlugin {
plugins {
register("fabricLoom") {
id = "fabric-loom"
implementationClass = "net.fabricmc.loom.LoomGradlePlugin"
}
}
2018-05-14 10:50:02 +00:00
}
publishing {
publications {
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
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
}