Skip to content

Commit

Permalink
Extract CF version in build.gradle (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ao-senXiong authored Apr 13, 2024
1 parent 10da32d commit 7f9eb53
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,12 @@ tasks.withType(JavaCompile).configureEach {

apply plugin: 'org.checkerframework'

def EISOPVersion = '3.42.0-eisop3'

dependencies {
compileOnly 'io.github.eisop:checker-qual:3.42.0-eisop3'
testCompileOnly 'io.github.eisop:checker-qual:3.42.0-eisop3'
checkerFramework 'io.github.eisop:checker:3.42.0-eisop3'
compileOnly "io.github.eisop:checker-qual:${EISOPVersion}"
testCompileOnly "io.github.eisop:checker-qual:${EISOPVersion}"
checkerFramework "io.github.eisop:checker:${EISOPVersion}"
}

checkerFramework {
Expand Down

0 comments on commit 7f9eb53

Please sign in to comment.