File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
dev/src/main/groovy/com/fox2code/foxloader/dev/compatibility Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -42,14 +42,16 @@ final class ShadowCompatibility extends CompatibilityModule {
4242 config. useJarTask(project. tasks. named(' shadowJar' , ShadowJar ))
4343 project. tasks. jar. enabled = false
4444 project. tasks. assemble. dependsOn(" shadowJar" )
45+ project. tasks. named(' shadowJar' , ShadowJar ) {
46+ archiveClassifier. set(" " )
47+ }
4548 }
4649
4750 @Override
4851 void onLateApply (Project project , FoxLoaderConfig config ) {
4952 final HashSet<String > dependenciesToExclude = new HashSet<> ()
5053 appendDependenciesNamesToExclude(config, dependenciesToExclude)
5154 project. tasks. named(' shadowJar' , ShadowJar ) {
52- archiveClassifier. set(" " )
5355 dependencies {
5456 exclude(new Spec<? super ResolvedDependency > () {
5557 @Override
You can’t perform that action at this time.
0 commit comments