File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 11dist : jammy
22language : java
3+ gradle : 6.9.3
34
45jdk :
56 - openjdk8
Original file line number Diff line number Diff line change @@ -67,12 +67,12 @@ jar {
6767}
6868
6969task sourcesJar (type : Jar , dependsOn : classes) {
70- classifier = ' sources'
70+ archiveClassifier = ' sources'
7171 from sourceSets. main. java
7272}
7373
7474task javadocJar (type : Jar , dependsOn : javadoc) {
75- classifier = ' javadoc'
75+ archiveClassifier = ' javadoc'
7676 from javadoc. destinationDir
7777}
7878
@@ -106,8 +106,8 @@ apply plugin: 'jacoco'
106106jacocoTestReport {
107107 tasks. coveralls. dependsOn it
108108 reports {
109- xml. enabled = true // coveralls plugin depends on xml format report
110- html. enabled = true
109+ xml. required = true // coveralls plugin depends on xml format report
110+ html. required = true
111111 }
112112}
113113check. dependsOn tasks. coveralls
You can’t perform that action at this time.
0 commit comments