Skip to content

Commit 3700a6c

Browse files
committed
upgrade Gradle
1 parent f691931 commit 3700a6c

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ plugins {
44
}
55

66
group 'com.github.codeborne'
7-
version '1.6-SNAPSHOT'
8-
9-
sourceCompatibility = targetCompatibility = 17
7+
version '1.9-SNAPSHOT'
108

119
compileJava {
10+
sourceCompatibility = targetCompatibility = 17
1211
options.compilerArgs.add('--add-exports=java.base/jdk.internal.org.objectweb.asm=ALL-UNNAMED')
1312
}
1413

@@ -18,12 +17,12 @@ javadoc {
1817

1918
task sourcesJar(type: Jar) {
2019
from sourceSets.main.allJava
21-
classifier = 'sources'
20+
archiveClassifier.set('sources')
2221
}
2322

2423
task javadocJar(type: Jar) {
2524
from javadoc
26-
classifier = 'javadoc'
25+
archiveClassifier.set('javadoc')
2726
}
2827

2928
repositories {
@@ -86,7 +85,8 @@ publishing {
8685

8786

8887
dependencies {
89-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
88+
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.13.4'
89+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.13.4'
9090
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
9191
testImplementation 'org.assertj:assertj-core:3.15.0'
9292
testImplementation 'org.jetbrains:annotations:20.1.0'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)