Skip to content

Commit

Permalink
Add local plume-utils dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
rohan-shettyy committed Apr 26, 2024
1 parent 279a029 commit b9e2c6b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ if (hasProperty('cfLocal')) {
def cfHome = String.valueOf(System.getenv('CHECKERFRAMEWORK'))
dependencies {
testImplementation files(cfHome + '/checker/dist/checker.jar')
testImplementation files(cfHome + '/checker/dist/checker-qual.jar')
testImplementation fileTree(dir: cfHome + '/framework-test/build/libs',
include: '*.jar',
exclude: ['*-sources.jar', '*-javadoc.jar'])
testImplementation libs.plume.utils
}
}

Expand Down
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ junitVer = "5.9.1"
guavaVer = "31.1-jre"
jSpecifyConformanceTestVer = "0.0.0-SNAPSHOT"
checkerFrameworkVer = "3.42.0-eisop3"
plumeUtilVer = "1.9.0"

[libraries]
junit = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junitVer" }
Expand All @@ -12,3 +13,4 @@ jspecify-conformance-framework = { module = "org.jspecify.conformance:conformanc
checkerframework-checker = { module = "io.github.eisop:checker", version.ref = "checkerFrameworkVer" }
checkerframework-framework-test = { module = "io.github.eisop:framework-test", version.ref = "checkerFrameworkVer" }
checkerframework-qual = { module = "io.github.eisop:checker-qual", version.ref = "checkerFrameworkVer" }
plume-utils = { module = "org.plumelib:plume-util", version.ref = "plumeUtilVer" }

0 comments on commit b9e2c6b

Please sign in to comment.