File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
build-plugins/build-support/src/main/kotlin/aws/sdk/kotlin/gradle/dsl Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -360,8 +360,14 @@ fun Project.configureJReleaser() {
360360 artifacts {
361361 artifactOverride {
362362 artifactId = " version-catalog"
363- jar = false // Version catalogs don't produce a JAR
364- verifyPom = false // JReleaser fails when processing <packaging>toml</packaging> tag: `Unknown packaging: toml`
363+
364+ // Version catalogs don't produce JARs
365+ jar = false
366+ sourceJar = false
367+ javadocJar = false
368+
369+ // JReleaser fails when processing <packaging>toml</packaging> tag: `Unknown packaging: toml`
370+ verifyPom = false
365371 }
366372 gradle.projectsEvaluated {
367373 nativeArtifactIds.get().forEach { artifactIdWithoutPlatform ->
You can’t perform that action at this time.
0 commit comments