Skip to content

Commit

Permalink
Add Java version compatibility to build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
aureliony committed Feb 23, 2024
1 parent e879559 commit eae87a1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ repositories {
mavenCentral()
}

java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

// Define project dependencies
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
Expand Down

0 comments on commit eae87a1

Please sign in to comment.