Skip to content

Commit

Permalink
[**-exporter] Disable publishing of javadoc and sources jar-s (#5117)
Browse files Browse the repository at this point in the history
  • Loading branch information
valfirst authored Jun 10, 2024
1 parent c3bff3d commit 7ed71e3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions vividus-to-azure-devops-exporter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ buildscript {
}
apply plugin: org.springframework.boot.gradle.plugin.SpringBootPlugin

tasks {
javadocJar.enabled = false
sourcesJar.enabled = false
}

dependencies {
// https://github.com/spring-gradle-plugins/dependency-management-plugin/issues/257
implementation platform(group: 'org.springframework.boot', name: 'spring-boot-dependencies', version: "${springBootVersion}")
Expand Down
5 changes: 5 additions & 0 deletions vividus-to-xray-exporter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ buildscript {
}
apply plugin: org.springframework.boot.gradle.plugin.SpringBootPlugin

tasks {
javadocJar.enabled = false
sourcesJar.enabled = false
}

dependencies {
// https://github.com/spring-gradle-plugins/dependency-management-plugin/issues/257
implementation platform(group: 'org.springframework.boot', name: 'spring-boot-dependencies', version: "${springBootVersion}")
Expand Down
5 changes: 5 additions & 0 deletions vividus-to-zephyr-exporter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ buildscript {
}
apply plugin: org.springframework.boot.gradle.plugin.SpringBootPlugin

tasks {
javadocJar.enabled = false
sourcesJar.enabled = false
}

dependencies {
// https://github.com/spring-gradle-plugins/dependency-management-plugin/issues/257
implementation platform(group: 'org.springframework.boot', name: 'spring-boot-dependencies', version: "${springBootVersion}")
Expand Down

0 comments on commit 7ed71e3

Please sign in to comment.