Skip to content

Commit

Permalink
Fix shadowJar
Browse files Browse the repository at this point in the history
  • Loading branch information
Barteks2x committed Oct 6, 2019
1 parent cdd0858 commit b90c9df
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildscript {
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'java'

version = "2.0"
version = "2.1"
group = "ofdev" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "aa_do_not_rename_OptiFineDevTweaker"

Expand Down Expand Up @@ -73,9 +73,11 @@ task shadowJarML(type: ShadowJar) {
}

shadowJar {
from {
shadowJarLW
shadowJarML
from(shadowJarLW.archivePath.absolutePath) {
include '*'
}
from (shadowJarML.archivePath.absolutePath) {
include '*'
}
classifier = "all"

Expand Down

0 comments on commit b90c9df

Please sign in to comment.