File tree Expand file tree Collapse file tree 2 files changed +6
-15
lines changed
gradle/plugins/common/src/main/kotlin Expand file tree Collapse file tree 2 files changed +6
-15
lines changed Original file line number Diff line number Diff line change
1
+ before_install :
2
+ - sdk update
3
+ - sdk install java 24-open
4
+ - sdk use java 24-open
5
+ install :
6
+ - ./gradlew --show-version javaToolchains publishToMavenLocal
Original file line number Diff line number Diff line change @@ -18,21 +18,6 @@ group = when (project) {
18
18
else -> " org.junit"
19
19
}
20
20
21
- // ensure project is built successfully before publishing it
22
- tasks.withType<PublishToMavenRepository >().configureEach {
23
- dependsOn(provider {
24
- val tempRepoName: String by rootProject
25
- if (repository.name != tempRepoName) {
26
- listOf (tasks.build)
27
- } else {
28
- emptyList()
29
- }
30
- })
31
- }
32
- tasks.withType<PublishToMavenLocal >().configureEach {
33
- dependsOn(tasks.build)
34
- }
35
-
36
21
val signArtifacts = buildParameters.publishing.signArtifacts.getOrElse(! (project.version.isSnapshot() || buildParameters.ci))
37
22
38
23
signing {
You can’t perform that action at this time.
0 commit comments