diff options
author | bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> | 2019-01-09 19:17:23 +0100 |
---|---|---|
committer | bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> | 2019-01-09 19:17:23 +0100 |
commit | 82bd52008b663bd38e96472c5d12a3db8bca63b3 (patch) | |
tree | 0fdffcfce6e9d3e163d0bcdf9cbc681153860986 /build.gradle | |
parent | b1e249a5d28a0fcc72943042866580147b6efb40 (diff) | |
download | GT5-Unofficial-82bd52008b663bd38e96472c5d12a3db8bca63b3.tar.gz GT5-Unofficial-82bd52008b663bd38e96472c5d12a3db8bca63b3.tar.bz2 GT5-Unofficial-82bd52008b663bd38e96472c5d12a3db8bca63b3.zip |
Bio Cultre System!
-Added the Bio Cultre System
-Added the Bio Vat, Bio Lab and custom Glas types
-Updated Copyright on the Files
-Added a shitton of ressources
-Added an API to for the Bio Cultre System
-Added a Phyton Script for the ease of adding Glas Types to the Bio Vat
-Fixed Spawning on custom blocks
-Fixed Nuggets giving out boni in the windmill
-Fixed tooltip again for the Windmill
-Added dimensionsIDs to the BlockCoord class
-Added apiJar, sourceJar, devJar to the grandlew output
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index c20193c1ec..0c65172e39 100644 --- a/build.gradle +++ b/build.gradle @@ -19,6 +19,7 @@ buildscript { apply plugin: 'forge' apply plugin: 'idea' apply plugin: 'signing' + import de.undercouch.gradle.tasks.download.Download sourceCompatibility = JavaVersion.VERSION_1_8 @@ -44,6 +45,7 @@ archivesBaseName = "bartworks"+ "[" + config.mc_version + "]" minecraft { version = "1.7.10-10.13.4.1614-1.7.10" replaceIn "MainMod.java" + replaceIn "API_REFERENCE.java" replace "@version@", project.version runDir = "run" } @@ -95,6 +97,29 @@ processResources } } +task apiJar(type: Jar){ + from(sourceSets.main.output) { + include 'com/github/bartimaeusnek/bartworks/API/**' + } + classifier = 'API' +} + +task sourceJar(type: Jar) { + from sourceSets.main.allSource + classifier = 'sources' +} + +task devJar(type: Jar) { + from sourceSets.main.output + classifier = 'dev' +} + +artifacts { + archives devJar + archives sourceJar + archives apiJar +} + task signJar(dependsOn: 'reobf'){ doLast { ant.signjar( |