Skip to content

Commit

Permalink
compatibility issues
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsobries committed Aug 2, 2024
1 parent 759fe53 commit 093dad1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@ plugins {
group = 'org.arkecosystem'
version = '2.0.0'

sourceCompatibility = '1.8'
targetCompatibility = '1.8'
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
withJavadocJar()
withSourcesJar()
}

repositories {
mavenLocal()
Expand All @@ -28,11 +32,7 @@ dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.3'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.3'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.3'
}

java {
withJavadocJar()
withSourcesJar()
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.10.3'
}

test {
Expand Down

0 comments on commit 093dad1

Please sign in to comment.