34 lines
895 B
Diff
34 lines
895 B
Diff
diff --git a/Procyon.Decompiler/build.gradle b/Procyon.Decompiler/build.gradle
|
|
index 7377956..388de1e 100644
|
|
--- a/Procyon.Decompiler/build.gradle
|
|
+++ b/Procyon.Decompiler/build.gradle
|
|
@@ -2,27 +2,13 @@ buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
-
|
|
- dependencies {
|
|
- classpath 'eu.appsatori:gradle-fatjar-plugin:0.3'
|
|
- }
|
|
}
|
|
|
|
jar.enabled = false
|
|
uploadArchives.enabled = false
|
|
|
|
-apply plugin: 'eu.appsatori.fatjar'
|
|
-
|
|
-fatJar {
|
|
-// from rootProject.allprojects.collect({ it.sourceSets.main.allSource })
|
|
-
|
|
- manifest {
|
|
- attributes 'Title': archivesBaseName, 'Manifest-Version': '1.0', 'Version': version, 'Main-Class' : 'com.strobel.decompiler.DecompilerDriver'
|
|
- }
|
|
-}
|
|
-
|
|
dependencies {
|
|
compile 'com.beust:jcommander:1.30'
|
|
compile project(':Procyon.Core')
|
|
compile project(':Procyon.CompilerTools')
|
|
-}
|
|
\ No newline at end of file
|
|
+}
|