Browse Source

Do not deploy the artifacts used only internally

tags/7.5
Simon Brandhof 5 years ago
parent
commit
beebd6be35

+ 0
- 16
server/sonar-db-dao/build.gradle View File

@@ -47,19 +47,3 @@ configurations {
artifacts {
tests testJar
}

artifactoryPublish.skip = false

// Used by core plugins
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
if (release) {
artifact sourcesJar
artifact javadocJar
artifact testJar
}
}
}
}

+ 1
- 16
server/sonar-db-migration/build.gradle View File

@@ -30,20 +30,5 @@ dependencies {
}

test {
systemProperty 'orchestrator.configUrl', System.getProperty('orchestrator.configUrl')
}

artifactoryPublish.skip = false

// Used by core plugins
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
if (release) {
artifact sourcesJar
artifact javadocJar
}
}
}
systemProperty 'orchestrator.configUrl', System.getProperty('orchestrator.configUrl')
}

+ 0
- 15
server/sonar-plugin-bridge/build.gradle View File

@@ -12,18 +12,3 @@ dependencies {

compileOnly 'com.google.code.findbugs:jsr305'
}

artifactoryPublish.skip = false

// Used by core plugins
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
if (release) {
artifact sourcesJar
artifact javadocJar
}
}
}
}

+ 0
- 14
server/sonar-process/build.gradle View File

@@ -28,17 +28,3 @@ dependencies {
testCompile 'org.mockito:mockito-core'
testCompile project(':sonar-testing-harness')
}

artifactoryPublish.skip = false

publishing {
publications {
mavenJava(MavenPublication) {
from components.java
if (release) {
artifact sourcesJar
artifact javadocJar
}
}
}
}

+ 0
- 15
server/sonar-qa-util/build.gradle View File

@@ -14,18 +14,3 @@ dependencies {

compileOnly 'com.google.code.findbugs:jsr305'
}

artifactoryPublish.skip = false

// Required for core plugins
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
if (release) {
artifact sourcesJar
artifact javadocJar
}
}
}
}

+ 0
- 11
server/sonar-server-common/build.gradle View File

@@ -21,14 +21,3 @@ dependencies {
testCompile 'org.assertj:assertj-core'
testCompile 'org.mockito:mockito-core'
}

//artifactoryPublish.skip = false

// Used by core plugins
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}

+ 1
- 17
server/sonar-server/build.gradle View File

@@ -95,21 +95,5 @@ configurations {
}

artifacts {
tests testJar
}

artifactoryPublish.skip = false

// Used by core plugins
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
if (release) {
artifact sourcesJar
artifact javadocJar
artifact testJar
}
}
}
tests testJar
}

+ 0
- 1
sonar-home/build.gradle View File

@@ -18,7 +18,6 @@ dependencies {

artifactoryPublish.skip = false

// Used by core plugins
publishing {
publications {
mavenJava(MavenPublication) {

+ 0
- 1
sonar-markdown/build.gradle View File

@@ -18,7 +18,6 @@ dependencies {

artifactoryPublish.skip = false

// Used by core plugins
publishing {
publications {
mavenJava(MavenPublication) {

+ 0
- 1
sonar-testing-harness/build.gradle View File

@@ -18,7 +18,6 @@ dependencies {
testCompile 'org.assertj:assertj-core'
}

// Used by sonar-db-core to run DB Unit Tests
artifactoryPublish.skip = false
publishing {
publications {

Loading…
Cancel
Save