diff options
author | Blood-Asp <bloodasphendrik@gmail.com> | 2015-10-03 15:23:52 +0200 |
---|---|---|
committer | Blood-Asp <bloodasphendrik@gmail.com> | 2015-10-03 15:23:52 +0200 |
commit | 6d9c73a70a6374f3619e0ba9648ec64f6bdd784e (patch) | |
tree | 51193dda0bc0704e8e4ad9567d7638d62fda645e /build.gradle | |
parent | c3fd04d6f4803d9d0444e357e3b1b6681b227b0c (diff) | |
download | GT5-Unofficial-6d9c73a70a6374f3619e0ba9648ec64f6bdd784e.tar.gz GT5-Unofficial-6d9c73a70a6374f3619e0ba9648ec64f6bdd784e.tar.bz2 GT5-Unofficial-6d9c73a70a6374f3619e0ba9648ec64f6bdd784e.zip |
Update version 5.08.30
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index 1c9b734bc2..4012680fde 100644 --- a/build.gradle +++ b/build.gradle @@ -61,3 +61,26 @@ processResources exclude 'mcmod.info' } } +task sourceJar(type: Jar) { +from sourceSets.main.allSource +classifier = 'sources'} +task devJar(type: Jar) { +from sourceSets.main.output +classifier = 'dev' +manifest { +//attributes 'FMLCorePlugin': 'WhateverLoaderClass' +//attributes 'FMLCorePluginContainsFMLMod': 'true' +} +} +//task apiJar(type: Jar) { +//from sourceSets.main.allSource +//include 'api/**' +//classifier = 'sources' +//manifest { +//attributes 'FMLCorePlugin': 'WhateverLoaderClass' +//attributes 'FMLCorePluginContainsFMLMod': 'true' +//} +} +artifacts { +archives devJar +}
\ No newline at end of file |