File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ jobs:
108108 run : |
109109 MKTEMP_PATH="$(dirname "$(mktemp -u)")/"
110110 echo "MKTEMP_PATH=$MKTEMP_PATH" >> $GITHUB_ENV
111- ./gradlew buildAndPublish --no-daemon --stacktrace
111+ ./gradlew buildAndPublish --no-daemon
112112 # echo "dist_path=backend/jvm/build/libs/jvm-all.jar" >> "$GITHUB_OUTPUT"
113113 env :
114114 GITHUB_USER : ${{ github.repository_owner }}
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ org.gradle.caching=true
55org.gradle.daemon =true
66org.gradle.configureondemand =true
77org.gradle.configuration-cache =false
8+ org.gradle.logging.stacktrace =full
89org.gradle.kotlin.dsl.allWarningsAsErrors =true
910# org.gradle.configuration-cache.problems=warn
1011# org.gradle.configuration-cache.max-problems=5
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ org.gradle.daemon=true
66org.gradle.configureondemand =true
77org.gradle.configuration-cache =true
88org.gradle.configuration-cache.problems =warn
9+ org.gradle.logging.stacktrace =full
910org.gradle.kotlin.dsl.allWarningsAsErrors =true
1011
1112# # Kotlin
Original file line number Diff line number Diff line change @@ -144,15 +144,14 @@ fun MavenPublication.configurePom() {
144144}
145145
146146tasks {
147+ withType<Sign >().configureEach { onlyIf { hasSigningKey } }
147148
148149 // Suppressing publication validation errors
149150 withType<GenerateModuleMetadata > { suppressedValidationErrors.add(" enforced-platform" ) }
150151
151152 // For publishing kotlin native binaries
152153 withType<PublishToMavenRepository >().configureEach { mustRunAfter(withType<KotlinNativeLink >()) }
153154
154- // withType<Sign>().configureEach { onlyIf { hasSigningKey } }
155-
156155 // cyclonedxBom {
157156 // includeConfigs = listOf("runtimeClasspath")
158157 // skipConfigs = listOf("compileClasspath", "testCompileClasspath")
You can’t perform that action at this time.
0 commit comments