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

artifacts { artifacts {
tests testJar 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

} }


test { 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



compileOnly 'com.google.code.findbugs:jsr305' 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

testCompile 'org.mockito:mockito-core' testCompile 'org.mockito:mockito-core'
testCompile project(':sonar-testing-harness') 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



compileOnly 'com.google.code.findbugs:jsr305' 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

testCompile 'org.assertj:assertj-core' testCompile 'org.assertj:assertj-core'
testCompile 'org.mockito:mockito-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

} }


artifacts { 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



artifactoryPublish.skip = false artifactoryPublish.skip = false


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

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



artifactoryPublish.skip = false artifactoryPublish.skip = false


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

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

testCompile 'org.assertj:assertj-core' testCompile 'org.assertj:assertj-core'
} }


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

Loading…
Cancel
Save