Skip to content

Commit

Permalink
Make the build output one jar file per subproject again
Browse files Browse the repository at this point in the history
  • Loading branch information
hedgehog1029 committed Apr 27, 2022
1 parent 8684264 commit 0a5abee
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion creator-tools/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ application {
}

dependencies {
implementation project(':launcher-builder')
implementation project(path: ':launcher-builder', configuration: 'shadow')
implementation 'org.eclipse.jetty:jetty-server:9.3.1.v20150714'
implementation 'com.jidesoft:jide-oss:3.6.18'
}
Expand All @@ -25,6 +25,7 @@ processResources {
}

shadowJar {
archiveClassifier.set("")
}

build {
Expand Down
1 change: 1 addition & 0 deletions launcher-bootstrap/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ processResources {
}

shadowJar {
archiveClassifier.set("")
}

build {
Expand Down
1 change: 1 addition & 0 deletions launcher-builder/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ dependencies {
}

shadowJar {
archiveClassifier.set("")
}

build {
Expand Down
3 changes: 2 additions & 1 deletion launcher-fancy/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ repositories {
}

dependencies {
implementation project(':launcher')
implementation project(path: ':launcher', configuration: 'shadow')
implementation 'io.github.cottonmc.insubstantial:substance:7.3.1-SNAPSHOT'
}

shadowJar {
archiveClassifier.set("")
}

build {
Expand Down
1 change: 1 addition & 0 deletions launcher/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ processResources {
}

shadowJar {
archiveClassifier.set("")
}

build {
Expand Down

0 comments on commit 0a5abee

Please sign in to comment.