diff --git a/build.gradle b/build.gradle index 475ae75..6de12ed 100644 --- a/build.gradle +++ b/build.gradle @@ -101,12 +101,12 @@ task generateLimitSource(type: JavaExec) { task javadocJar(type: Jar) { from javadoc - classifier = 'javadoc' + archiveClassifier = 'javadoc' } task srcJar(type: Jar) { from sourceSets.main.allSource - classifier = 'sources' + archiveClassifier = 'sources' } compileJava.dependsOn generateGithubSource @@ -262,9 +262,9 @@ test { jacocoTestReport { executionData fileTree(project.buildDir.absolutePath).include("jacoco/*.exec") reports { - xml.enabled true - html.enabled = true - csv.enabled true + xml.required = true + html.required = true + csv.required = true } } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index e750102..47491b5 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists