Skip to content

Commit

Permalink
fix: downgrade to jdk 16
Browse files Browse the repository at this point in the history
  • Loading branch information
Silthus committed Oct 4, 2021
1 parent 3de3369 commit 3791bd2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ if (project.hasProperty("local_script")) {
apply from: file(local_script + "/build.local.gradle")
}

sourceCompatibility = 17
targetCompatibility = 17
sourceCompatibility = 16
targetCompatibility = 16

ext {
mcVersion = project.property("mcVersion")
Expand Down Expand Up @@ -59,10 +59,10 @@ dependencies {
//Add dependencies here

//Test dependencies
testImplementation 'org.junit.jupiter:junit-jupiter:5.+'
testImplementation "org.mockito:mockito-core:3.+"
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.1'
testImplementation 'org.mockito:mockito-core:3.12.4'
testImplementation 'com.github.seeseemelk:MockBukkit-v1.16:1.5.2'
testImplementation 'org.assertj:assertj-core:3.+'
testImplementation 'org.assertj:assertj-core:3.21.0'
}

shadowJar {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions-snapshots/gradle-7.3-20210928002732+0000-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 3791bd2

Please sign in to comment.