Skip to content

Commit

Permalink
Fix GitHub Actions, update DkimCore, and fix deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
dkim19375 committed Jun 21, 2023
1 parent 9fc0c79 commit f33b605
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import org.jetbrains.kotlin.gradle.dsl.JvmTarget

plugins {
id 'signing'
id 'java-library'
Expand All @@ -19,11 +21,11 @@ version '2.10.10'

//noinspection GrUnresolvedAccess
compileKotlin.compilerOptions {
jvmTarget = '1.8'
jvmTarget.set(JvmTarget.JVM_1_8)
}

compileTestKotlin.compilerOptions {
jvmTarget = '1.8'
jvmTarget.set(JvmTarget.JVM_1_8)
}

license {
Expand Down

0 comments on commit f33b605

Please sign in to comment.