File tree 4 files changed +13
-2
lines changed 4 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ plugins {
3
3
id ' com.github.hierynomus.license' version " $licenseVersion "
4
4
id ' com.github.kt3k.coveralls' version " $coverallsVersion "
5
5
id ' com.github.spotbugs' version " $spotbugsVersion "
6
- id ' com.gradle.build-scan' version " $scanVersion "
7
6
id ' net.researchgate.release' version " $releasesVersion "
8
7
id ' org.owasp.dependencycheck' version " $owaspVersion "
9
8
id ' org.sonarqube' version " $sonarVersion "
@@ -371,6 +370,10 @@ subprojects { subproj ->
371
370
sign publishing. publications
372
371
}
373
372
373
+ tasks. withType(Sign ) {
374
+ onlyIf { ! version. endsWith(" SNAPSHOT" ) }
375
+ }
376
+
374
377
processResources {
375
378
outputs. upToDateWhen { false }
376
379
filesMatching([' **/features.xml' , ' **/banner.txt' ]) {
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-5.6.4 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.0.1 -bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change @@ -52,6 +52,10 @@ publishing {
52
52
}
53
53
}
54
54
55
+ tasks. withType(GenerateModuleMetadata ) {
56
+ enabled = false
57
+ }
58
+
55
59
java {
56
60
// because this isn't built as a JPMS module
57
61
if (project. hasProperty(" jpms" ) && JavaVersion . current(). isJava11Compatible()) {
Original file line number Diff line number Diff line change
1
+ plugins {
2
+ id " com.gradle.enterprise" version " $scanVersion "
3
+ }
4
+
1
5
rootProject. name = ' trellis'
2
6
3
7
include ' :trellis-api'
You can’t perform that action at this time.
0 commit comments