diff options
author | ftbsc <dev@fantabos.co> | 2023-02-07 13:12:32 +0100 |
---|---|---|
committer | ftbsc <dev@fantabos.co> | 2023-02-07 13:12:32 +0100 |
commit | 8a6c46f03e85840c58b8af5d2075247b8832fe88 (patch) | |
tree | 5f6a4723d38d1669386e3f428f1ac36c922cec53 /build.gradle | |
parent | 46feccc63b829a6702567b8bfdb40496efba9472 (diff) |
build: temporarily disable shadow
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/build.gradle b/build.gradle index 0640e4a..56c9a62 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java-library' - id 'com.github.johnrengelman.shadow' version '7.1.2' + // id 'com.github.johnrengelman.shadow' version '7.1.2' } java.toolchain.languageVersion = JavaLanguageVersion.of(8) @@ -16,16 +16,16 @@ dependencies { implementation 'org.apache.logging.log4j:log4j-core:2.15.0' implementation 'org.ow2.asm:asm-commons:9.4' implementation 'cpw.mods:modlauncher:8.1.3' - implementation 'ftbsc:lll:0.0.3' + implementation 'ftbsc:lll:0.0.4' } -jar { - dependsOn shadowJar -} +// jar { +// dependsOn shadowJar +// } -shadowJar { - dependencies { - include dependency(group: 'ftbsc', name: 'lll', version: '0.0.3') - } - archiveClassifier.set("all") // -} +// shadowJar { +// dependencies { +// include dependency(group: 'ftbsc', name: 'lll', version: '0.0.3') +// } +// archiveClassifier.set("all") +// } |