mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-27 19:41:38 +01:00
fix issue that fail to publish gradle plugin to maven central
This commit is contained in:
@@ -50,19 +50,11 @@ dependencies {
|
|||||||
'org.owasp:dependency-check-utils:1.3.0'
|
'org.owasp:dependency-check-utils:1.3.0'
|
||||||
)
|
)
|
||||||
|
|
||||||
testCompile ('com.netflix.nebula:nebula-test:2.2.+'){
|
testCompile ('com.netflix.nebula:nebula-test:2.2.2'){
|
||||||
exclude group: 'org.codehaus.groovy'
|
exclude group: 'org.codehaus.groovy'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
group = 'com.thoughtworks.tools'
|
|
||||||
version = '0.0.6'
|
|
||||||
|
|
||||||
apply from: 'conf/publish/local.gradle'
|
|
||||||
//apply from: 'conf/publish/maven.gradle'
|
|
||||||
apply from: 'conf/publish/gradlePluginsPortal.gradle'
|
|
||||||
//apply from: 'conf/publish/bintray.gradle' // according to the documentation of plugindev, this line has to be placed and the very end of the build file
|
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
integTest {
|
integTest {
|
||||||
groovy.srcDir file('src/integTest/groovy')
|
groovy.srcDir file('src/integTest/groovy')
|
||||||
@@ -79,3 +71,11 @@ task integTest(type: Test) {
|
|||||||
reports.html.destination = file("$buildDir/reports/integ")
|
reports.html.destination = file("$buildDir/reports/integ")
|
||||||
jvmArgs '-XX:MaxPermSize=256m'
|
jvmArgs '-XX:MaxPermSize=256m'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
group = 'com.thoughtworks.tools'
|
||||||
|
version = '0.0.6'
|
||||||
|
|
||||||
|
apply from: 'conf/publish/local.gradle'
|
||||||
|
//apply from: 'conf/publish/maven.gradle'
|
||||||
|
apply from: 'conf/publish/gradlePluginsPortal.gradle'
|
||||||
|
//apply from: 'conf/publish/bintray.gradle' // according to the documentation of plugindev, this line has to be placed and the very end of the build file
|
||||||
@@ -66,6 +66,11 @@ task javadocJar(type: Jar) {
|
|||||||
from javadoc
|
from javadoc
|
||||||
}
|
}
|
||||||
|
|
||||||
|
task sourcesJar(type: Jar, dependsOn: classes) {
|
||||||
|
classifier = 'sources'
|
||||||
|
from sourceSets.main.allSource
|
||||||
|
}
|
||||||
|
|
||||||
artifacts {
|
artifacts {
|
||||||
archives javadocJar, sourcesJar
|
archives javadocJar, sourcesJar
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user