Skip to content

Commit

Permalink
revert compatibility changes
Browse files Browse the repository at this point in the history
  • Loading branch information
munishchouhan committed May 27, 2024
1 parent 01aee34 commit 99225fd
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,9 @@ compileJava {
options.release.set(11)
}

// Load the javaVersion property from gradle.properties
def javaVersion = project.hasProperty('javaVersion') ? project.property('javaVersion') : '17'

// Configure the Groovy compile tasks using the javaVersion property
tasks.withType(GroovyCompile) {
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
sourceCompatibility = '17'
targetCompatibility = '17'
}

group = 'io.seqera'

0 comments on commit 99225fd

Please sign in to comment.