mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-22 00:59:34 +01:00
refactor the build.gradle file, extract publish tasks to separated gradle file
Former-commit-id: 539b8d16917a8a60e07a7f1466ce9ad0c84ca94e
This commit is contained in:
@@ -54,112 +54,7 @@ dependencies {
|
|||||||
group = 'com.thoughtworks.tools'
|
group = 'com.thoughtworks.tools'
|
||||||
version = '0.0.4'
|
version = '0.0.4'
|
||||||
|
|
||||||
//-------------------------------
|
apply from: 'conf/publish/local.gradle'
|
||||||
// Local debug use only
|
//apply from: 'conf/publish/maven.gradle'
|
||||||
//
|
apply from: 'conf/publish/gradlePluginsPortal.gradle'
|
||||||
//uploadArchives {
|
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
|
||||||
// repositories {
|
|
||||||
// mavenDeployer {
|
|
||||||
// repository(url: uri('../../../repo'))
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//}
|
|
||||||
//-------------------------------
|
|
||||||
|
|
||||||
|
|
||||||
// upload to maven central
|
|
||||||
uploadArchives {
|
|
||||||
repositories {
|
|
||||||
mavenDeployer {
|
|
||||||
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
|
|
||||||
|
|
||||||
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
|
|
||||||
authentication(userName: sonatypeUsername, password: sonatypePassword)
|
|
||||||
}
|
|
||||||
|
|
||||||
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
|
|
||||||
authentication(userName: sonatypeUsername, password: sonatypePassword)
|
|
||||||
}
|
|
||||||
|
|
||||||
pom.project {
|
|
||||||
name 'Dependency Check Gradle Plugin'
|
|
||||||
packaging 'jar'
|
|
||||||
description 'Dependency-Check is a utility that attempts to detect publicly disclosed vulnerabilities contained within project dependencies.'
|
|
||||||
url 'https://github.com/wmaintw/DependencyCheck/tree/master/dependency-check-gradle'
|
|
||||||
|
|
||||||
scm {
|
|
||||||
connection 'git@github.com:wmaintw/DependencyCheck.git'
|
|
||||||
developerConnection 'git@github.com:wmaintw/DependencyCheck.git'
|
|
||||||
url 'https://github.com/wmaintw/DependencyCheck'
|
|
||||||
}
|
|
||||||
|
|
||||||
licenses {
|
|
||||||
license {
|
|
||||||
name 'The Apache License, Version 2.0'
|
|
||||||
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
developers {
|
|
||||||
developer {
|
|
||||||
id 'wmaintw'
|
|
||||||
name 'Wei Ma'
|
|
||||||
email 'wma@thoughtworks.com'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
task javadocJar(type: Jar) {
|
|
||||||
classifier = 'javadoc'
|
|
||||||
from javadoc
|
|
||||||
}
|
|
||||||
|
|
||||||
artifacts {
|
|
||||||
archives javadocJar, sourcesJar
|
|
||||||
}
|
|
||||||
|
|
||||||
signing {
|
|
||||||
sign configurations.archives
|
|
||||||
}
|
|
||||||
|
|
||||||
// publish to Bintray
|
|
||||||
plugindev {
|
|
||||||
pluginId = 'dependency.check'
|
|
||||||
pluginName = 'dependency-check'
|
|
||||||
pluginImplementationClass 'com.tools.security.plugin.DependencyCheckGradlePlugin'
|
|
||||||
pluginDescription 'This is dependency check gradle plugin.'
|
|
||||||
pluginLicenses 'Apache-2.0'
|
|
||||||
pluginTags 'dependency check', 'security'
|
|
||||||
authorId 'wmaintw'
|
|
||||||
authorName 'Wei Ma'
|
|
||||||
authorEmail 'wma@thoughtworks.com'
|
|
||||||
projectUrl 'https://github.com/wmaintw/DependencyCheck'
|
|
||||||
projectIssuesUrl 'https://github.com/wmaintw/DependencyCheck/issues'
|
|
||||||
projectVcsUrl 'git@github.com:wmaintw/DependencyCheck.git'
|
|
||||||
projectInceptionYear '2015'
|
|
||||||
done()
|
|
||||||
}
|
|
||||||
|
|
||||||
bintray {
|
|
||||||
user = bintrayUser
|
|
||||||
key = bintrayUserKey
|
|
||||||
pkg.repo = bintrayRepo
|
|
||||||
}
|
|
||||||
|
|
||||||
// publish to gradle plugin portal
|
|
||||||
pluginBundle {
|
|
||||||
website = 'https://github.com/wmaintw/DependencyCheck'
|
|
||||||
vcsUrl = 'git@github.com:wmaintw/DependencyCheck.git'
|
|
||||||
description = 'This is dependency check gradle plugin.'
|
|
||||||
tags = ['dependency check', 'security']
|
|
||||||
|
|
||||||
plugins {
|
|
||||||
dependencyCheckPlugin {
|
|
||||||
id = 'dependency.check'
|
|
||||||
displayName = 'dependency-check'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
23
dependency-check-gradle/conf/publish/bintray.gradle
Normal file
23
dependency-check-gradle/conf/publish/bintray.gradle
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
// publish to Bintray
|
||||||
|
plugindev {
|
||||||
|
pluginId = 'dependency.check'
|
||||||
|
pluginName = 'dependency-check'
|
||||||
|
pluginImplementationClass 'com.tools.security.plugin.DependencyCheckGradlePlugin'
|
||||||
|
pluginDescription 'This is dependency check gradle plugin.'
|
||||||
|
pluginLicenses 'Apache-2.0'
|
||||||
|
pluginTags 'dependency check', 'security'
|
||||||
|
authorId 'wmaintw'
|
||||||
|
authorName 'Wei Ma'
|
||||||
|
authorEmail 'wma@thoughtworks.com'
|
||||||
|
projectUrl 'https://github.com/wmaintw/DependencyCheck'
|
||||||
|
projectIssuesUrl 'https://github.com/wmaintw/DependencyCheck/issues'
|
||||||
|
projectVcsUrl 'git@github.com:wmaintw/DependencyCheck.git'
|
||||||
|
projectInceptionYear '2015'
|
||||||
|
done()
|
||||||
|
}
|
||||||
|
|
||||||
|
bintray {
|
||||||
|
user = bintrayUser
|
||||||
|
key = bintrayUserKey
|
||||||
|
pkg.repo = bintrayRepo
|
||||||
|
}
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
// publish to gradle plugin portal
|
||||||
|
pluginBundle {
|
||||||
|
website = 'https://github.com/wmaintw/DependencyCheck'
|
||||||
|
vcsUrl = 'git@github.com:wmaintw/DependencyCheck.git'
|
||||||
|
description = 'This is dependency check gradle plugin.'
|
||||||
|
tags = ['dependency check', 'security']
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
dependencyCheckPlugin {
|
||||||
|
id = 'dependency.check'
|
||||||
|
displayName = 'dependency-check'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
8
dependency-check-gradle/conf/publish/local.gradle
Normal file
8
dependency-check-gradle/conf/publish/local.gradle
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
//Local debug use only
|
||||||
|
uploadArchives {
|
||||||
|
repositories {
|
||||||
|
mavenDeployer {
|
||||||
|
repository(url: uri('../../../repo'))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
57
dependency-check-gradle/conf/publish/maven.gradle
Normal file
57
dependency-check-gradle/conf/publish/maven.gradle
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
//upload to maven central
|
||||||
|
uploadArchives {
|
||||||
|
repositories {
|
||||||
|
mavenDeployer {
|
||||||
|
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
|
||||||
|
|
||||||
|
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
|
||||||
|
authentication(userName: sonatypeUsername, password: sonatypePassword)
|
||||||
|
}
|
||||||
|
|
||||||
|
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
|
||||||
|
authentication(userName: sonatypeUsername, password: sonatypePassword)
|
||||||
|
}
|
||||||
|
|
||||||
|
pom.project {
|
||||||
|
name 'Dependency Check Gradle Plugin'
|
||||||
|
packaging 'jar'
|
||||||
|
description 'Dependency-Check is a utility that attempts to detect publicly disclosed vulnerabilities contained within project dependencies.'
|
||||||
|
url 'https://github.com/wmaintw/DependencyCheck/tree/master/dependency-check-gradle'
|
||||||
|
|
||||||
|
scm {
|
||||||
|
connection 'git@github.com:wmaintw/DependencyCheck.git'
|
||||||
|
developerConnection 'git@github.com:wmaintw/DependencyCheck.git'
|
||||||
|
url 'https://github.com/wmaintw/DependencyCheck'
|
||||||
|
}
|
||||||
|
|
||||||
|
licenses {
|
||||||
|
license {
|
||||||
|
name 'The Apache License, Version 2.0'
|
||||||
|
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
developers {
|
||||||
|
developer {
|
||||||
|
id 'wmaintw'
|
||||||
|
name 'Wei Ma'
|
||||||
|
email 'wma@thoughtworks.com'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
task javadocJar(type: Jar) {
|
||||||
|
classifier = 'javadoc'
|
||||||
|
from javadoc
|
||||||
|
}
|
||||||
|
|
||||||
|
artifacts {
|
||||||
|
archives javadocJar, sourcesJar
|
||||||
|
}
|
||||||
|
|
||||||
|
signing {
|
||||||
|
sign configurations.archives
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user