Skip to content

Commit

Permalink
Updated to Java 11 minimum required for ical4j v4
Browse files Browse the repository at this point in the history
  • Loading branch information
benfortuna committed Feb 24, 2024
1 parent 0bb6b56 commit 7d95ae5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ repositories {
mavenCentral()
}

sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 11
targetCompatibility = 11

java {
withJavadocJar()
Expand All @@ -23,7 +23,6 @@ java {
dependencies {
api "org.mnode.ical4j:ical4j:$ical4jVersion"


testImplementation "org.codehaus.groovy:groovy:$groovyVersion"

// junit
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ical4jVersion = 4.0.0-rc3
ical4jVersion = 4.0.0-rc4

groovyVersion = 3.0.11
slf4jVersion = 2.0.7
groovyVersion = 3.0.20
slf4jVersion = 2.0.9

spockVersion = 2.4-M1-groovy-3.0

0 comments on commit 7d95ae5

Please sign in to comment.