You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create Gradle build structure, with build.gradle.kts:
plugins {
id("java-library")
id("nebula.info") version "11.4.1"
}
infoBroker {
// only include reproducible entries (entries such as build time do not comply to https://reproducible-builds.org/)
includedManifestProperties =listOf(
"Full-Change",
)
}
Summary
Missing up-to-date checks for Jar tasks: when data collected by
nebula.info
changes (e.g. Git commit), it should invalidate any previous jar tasks, instead of reusing the old task output.https://docs.gradle.org/current/userguide/more_about_tasks.html#sec:up_to_date_checks
Expected behavior
jar
task is executed on second build.jar
file content reflects the data collected bynebula.info
during the second build.Actual behavior
jar
task is skipped on second build, and marked asUP-TO-DATE
.jar
file content reflect the data collected bynebula.info
during the previous build.Steps to reproduce
build.gradle.kts
:Context
Workaround
The text was updated successfully, but these errors were encountered: