File tree 4 files changed +4
-3
lines changed
4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ jobs:
108
108
run : |
109
109
MKTEMP_PATH="$(dirname "$(mktemp -u)")/"
110
110
echo "MKTEMP_PATH=$MKTEMP_PATH" >> $GITHUB_ENV
111
- ./gradlew buildAndPublish --no-daemon --stacktrace
111
+ ./gradlew buildAndPublish --no-daemon
112
112
# echo "dist_path=backend/jvm/build/libs/jvm-all.jar" >> "$GITHUB_OUTPUT"
113
113
env :
114
114
GITHUB_USER : ${{ github.repository_owner }}
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ org.gradle.caching=true
5
5
org.gradle.daemon =true
6
6
org.gradle.configureondemand =true
7
7
org.gradle.configuration-cache =false
8
+ org.gradle.logging.stacktrace =full
8
9
org.gradle.kotlin.dsl.allWarningsAsErrors =true
9
10
# org.gradle.configuration-cache.problems=warn
10
11
# 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
6
6
org.gradle.configureondemand =true
7
7
org.gradle.configuration-cache =true
8
8
org.gradle.configuration-cache.problems =warn
9
+ org.gradle.logging.stacktrace =full
9
10
org.gradle.kotlin.dsl.allWarningsAsErrors =true
10
11
11
12
# # Kotlin
Original file line number Diff line number Diff line change @@ -144,15 +144,14 @@ fun MavenPublication.configurePom() {
144
144
}
145
145
146
146
tasks {
147
+ withType<Sign >().configureEach { onlyIf { hasSigningKey } }
147
148
148
149
// Suppressing publication validation errors
149
150
withType<GenerateModuleMetadata > { suppressedValidationErrors.add(" enforced-platform" ) }
150
151
151
152
// For publishing kotlin native binaries
152
153
withType<PublishToMavenRepository >().configureEach { mustRunAfter(withType<KotlinNativeLink >()) }
153
154
154
- // withType<Sign>().configureEach { onlyIf { hasSigningKey } }
155
-
156
155
// cyclonedxBom {
157
156
// includeConfigs = listOf("runtimeClasspath")
158
157
// skipConfigs = listOf("compileClasspath", "testCompileClasspath")
You can’t perform that action at this time.
0 commit comments