File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-7.6 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.3 -bin.zip
44networkTimeout =10000
55zipStoreBase =GRADLE_USER_HOME
66zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change @@ -52,6 +52,10 @@ tasks.register("TestMultiThreading") {
5252 application. mainClass = ' electrostatic4j.snaploader.examples.TestMultiThreading'
5353}
5454
55+ tasks. register(" TestRetryExhaustionException" ) {
56+ application. mainClass = ' electrostatic4j.snaploader.examples.TestRetryExhaustionException'
57+ }
58+
5559task copyLibs (type : Copy ) {
5660 from (libsDir) {
5761 include ' **/*.jar'
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ plugins {
44}
55
66tasks. register(" generateJavadocJar" , Jar ) {
7- classifier = ' javadoc'
7+ archiveClassifier . set( " javadoc" )
88 from javadoc
99}
1010
1111tasks. register(" generateSourcesJar" , Jar ) {
12- classifier = ' sources'
12+ archiveClassifier . set( " sources" )
1313 from sourceSets. main. allSource
1414}
1515
You can’t perform that action at this time.
0 commit comments