Skip to content

Commit

Permalink
Merge pull request #67 from allegro/java17
Browse files Browse the repository at this point in the history
switch to java 17 (source & target)
  • Loading branch information
pbobruk authored Apr 16, 2024
2 parents ae70b31 + 08e3032 commit 3a4ea97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ dependencies {
}

compileJava {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

tasks.withType(GroovyCompile).configureEach {
Expand Down Expand Up @@ -91,7 +91,7 @@ tasks.register('makePluginDescriptor', Copy) {
'classname' : pluginClassname,
'description' : pluginDescription,
'version' : project.property('version'),
'javaVersion' : JavaVersion.VERSION_11,
'javaVersion' : JavaVersion.VERSION_17,
'elasticsearchVersion': versions.elasticsearch
]
])
Expand Down

0 comments on commit 3a4ea97

Please sign in to comment.