diff options
Diffstat (limited to 'build.gradle')
| -rw-r--r-- | build.gradle | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/build.gradle b/build.gradle index e5889c4c..d937f630 100644 --- a/build.gradle +++ b/build.gradle | |||
| @@ -57,13 +57,10 @@ dependencies { | |||
| 57 | implementation 'org.ow2.asm:asm-tree:8.0' | 57 | implementation 'org.ow2.asm:asm-tree:8.0' |
| 58 | implementation 'org.ow2.asm:asm-util:8.0' | 58 | implementation 'org.ow2.asm:asm-util:8.0' |
| 59 | implementation 'net.sf.jopt-simple:jopt-simple:6.0-alpha-3' | 59 | implementation 'net.sf.jopt-simple:jopt-simple:6.0-alpha-3' |
| 60 | implementation 'net.fabricmc:procyon-fabric-compilertools:0.5.35.+' | 60 | implementation 'net.fabricmc:procyon-fabric-compilertools:0.5.35.13' |
| 61 | implementation 'net.fabricmc:cfr:0.0.1' | 61 | implementation 'net.fabricmc:cfr:0.0.1' |
| 62 | implementation name: "darcula", version: "1.0.0" | 62 | implementation name: "darcula", version: "1.0.0" |
| 63 | implementation 'de.sciss:syntaxpane:1.2.+' | 63 | implementation 'de.sciss:syntaxpane:1.2.0' |
| 64 | implementation 'me.xdrop:fuzzywuzzy:1.2.0' | ||
| 65 | implementation name: "darcula", version: "1.0.0" | ||
| 66 | implementation 'de.sciss:syntaxpane:1.2.+' | ||
| 67 | implementation 'me.xdrop:fuzzywuzzy:1.2.0' | 64 | implementation 'me.xdrop:fuzzywuzzy:1.2.0' |
| 68 | 65 | ||
| 69 | testImplementation 'junit:junit:4.+' | 66 | testImplementation 'junit:junit:4.+' |
| @@ -158,16 +155,14 @@ task sourcesJar(type: Jar, dependsOn: generateSources) { | |||
| 158 | from sourceSets.main.resources | 155 | from sourceSets.main.resources |
| 159 | } | 156 | } |
| 160 | 157 | ||
| 161 | artifacts { | ||
| 162 | archives shadowJar | ||
| 163 | archives libJar | ||
| 164 | archives sourcesJar | ||
| 165 | } | ||
| 166 | |||
| 167 | publishing { | 158 | publishing { |
| 168 | publications { | 159 | publications { |
| 169 | mavenJava(MavenPublication) { | 160 | mavenJava(MavenPublication) { |
| 170 | artifact jar | 161 | from components.java |
| 162 | |||
| 163 | artifact shadowJar | ||
| 164 | artifact libJar | ||
| 165 | artifact sourcesJar | ||
| 171 | } | 166 | } |
| 172 | } | 167 | } |
| 173 | 168 | ||