Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions framework/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ def stubifierJar = tasks.register("stubifierJar", Jar) {
dependencies {
api(project(":javacutil"))
api(project(":dataflow"))
api("org.checkerframework:stubparser:3.27.1")
stubifierImplementation("org.checkerframework:stubparser:3.27.1")
api("org.checkerframework:stubparser:${stubparserVersion}")
stubifierImplementation("org.checkerframework:stubparser:${stubparserVersion}")
// This should be implementation sourceSets.stubifier.output, but that cause a failure in shadowJar.
// This work around is from here: https://github.com/GradleUp/shadow/issues/1606#issuecomment-3164731141
implementation(files(stubifierJar))
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ junitVersion=4.13.2
lombokVersion=1.18.42
plumeUtilVersion=1.12.2
reflectionUtilVersion=1.1.5
stubparserVersion=3.27.1