Skip to content

Commit

Permalink
Fix Kotlin instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst committed Dec 13, 2023
1 parent ae8a6e1 commit b38ed80
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/developer/release/README-release-process.html
Original file line number Diff line number Diff line change
Expand Up @@ -315,15 +315,15 @@ <h4 id="using_snapshot_release_gradle_kotlin">Gradle Kotlin (<code>build.gradle.
to use the snapshot version of the Checker Framework:

<pre>
ext.checkerFrameworkVersion = '3.41.1-SNAPSHOT'
val checkerFrameworkVersion = "3.41.1-SNAPSHOT"
dependencies {
compileOnly "org.checkerframework:checker-qual:${checkerFrameworkVersion}"
testCompileOnly "org.checkerframework:checker-qual:${checkerFrameworkVersion}"
checkerFramework "org.checkerframework:checker:${checkerFrameworkVersion}"
compileOnly("org.checkerframework:checker-qual:${checkerFrameworkVersion}")
testCompileOnly("org.checkerframework:checker-qual:${checkerFrameworkVersion}")
checkerFramework("org.checkerframework:checker:${checkerFrameworkVersion}")
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}</pre>
configurations.all({
resolutionStrategy.cacheChangingModulesFor(0, "seconds")
})</pre>

<h4 id="using_snapshot_release_maven">Maven (<code>pom.xml</code> file)</h4>

Expand Down

0 comments on commit b38ed80

Please sign in to comment.