Skip to content

Commit

Permalink
Put graalvm version into a variable
Browse files Browse the repository at this point in the history
  • Loading branch information
MediaMarco committed Jul 24, 2024
1 parent 15dc7a3 commit fe59d1c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ buildscript {
nettyVersion = '4.1.112.Final'
junitJupiterVersion = '5.10.3'
slf4jVersion = '2.0.13'
graalvmVersion = '24.0.1'
}
repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies {
implementation project(":jlineup-core")
implementation "info.picocli:picocli:4.7.6"
annotationProcessor 'info.picocli:picocli-codegen:4.7.6'
compileOnly "org.graalvm.nativeimage:svm:24.0.1"
compileOnly "org.graalvm.nativeimage:svm:${graalvmVersion}"

testImplementation "org.hamcrest:hamcrest-core:2.2"
testImplementation "org.hamcrest:hamcrest-library:2.2"
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies {
implementation "org.slf4j:slf4j-api:${slf4jVersion}"
implementation "org.codehaus.janino:janino:3.1.12"
implementation 'org.thymeleaf:thymeleaf:3.1.2.RELEASE'
implementation "org.graalvm.sdk:graal-sdk:24.0.1"
implementation "org.graalvm.sdk:graal-sdk:${graalvmVersion}"
implementation "org.reflections:reflections:0.10.2"

testImplementation "org.junit.jupiter:junit-jupiter:${junitJupiterVersion}"
Expand Down

0 comments on commit fe59d1c

Please sign in to comment.