Skip to content

Commit fc91484

Browse files
committed
Updated gradle conventions
1 parent 87661ea commit fc91484

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

buildSrc/src/main/groovy/base.junit.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ test {
1414
events "passed", "skipped", "failed"
1515
}
1616
maxParallelForks = Runtime.runtime.availableProcessors()
17+
failOnNoDiscoveredTests = false
1718
}
1819
build.dependsOn(test)

buildSrc/src/main/groovy/publishing.aggregating_publisher.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@ publishing {
22
repositories {
33
maven {
44
name = "AggregatingPublisher"
5-
url = "http://127.0.0.1:8080/aggregate/maven"
5+
url = "https://aggregatingpublisher.local.lenni0451.net/aggregate/maven"
6+
7+
credentials(PasswordCredentials)
8+
authentication {
9+
basic(BasicAuthentication)
10+
}
611
}
712
}
813
}

0 commit comments

Comments
 (0)