Skip to content

Commit

Permalink
Fix large goal jars
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelCourtney committed Sep 18, 2024
1 parent 77ff26c commit fbd02bc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions e2e-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ task e2eTest(type: Test) {
}

dependencies {
testAnnotationProcessor project(':procedural:processor')
annotationProcessor project(':procedural:processor')

testImplementation project(":procedural:scheduling")
testImplementation project(":procedural:timeline")
testImplementation project(':merlin-driver')
testImplementation project(':type-utils')
testImplementation project(':contrib')
implementation project(":procedural:scheduling")
implementation project(":procedural:timeline")
implementation project(':merlin-sdk')
implementation project(':type-utils')
implementation project(':contrib')

testImplementation project(":procedural:remote")
testImplementation "com.zaxxer:HikariCP:5.1.0"
Expand Down Expand Up @@ -112,7 +112,7 @@ tasks.create("generateSchedulingProcedureJarTasks") {

tasks.create(taskName, ShadowJar) {
group = 'SchedulingProcedureJars'
configurations = [project.configurations.testCompileClasspath]
configurations = [project.configurations.compileClasspath]
from sourceSets.main.output
archiveBaseName = "" // clear
archiveClassifier.set(nameWithoutExtension) // set output jar name
Expand Down

0 comments on commit fbd02bc

Please sign in to comment.