-
-
Notifications
You must be signed in to change notification settings - Fork 423
configuration caching causing shadowJar to be out-of-date #707
Copy link
Copy link
Closed
Description
Shadow Version
6.1.0, 7.1.0-SNAPSHOT
Gradle Version
7.2
Expected Behavior
If I run ./gradlew --configuration-cache shadowJar twice in a row, in the second run the task should be UP-TO-DATE
Actual Behavior
I'm running ./gradlew --configuration-cache shadowJar twice in a row and finding that the second run isn't UP-TO-DATE
Gradle Build Script(s)
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
repositories { maven { url "${repo.uri}" } }
dependencies {
implementation "junit:junit:3.8.2"
}
shadowJar {
configurations = [project.configurations.compileClasspath]
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels