mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-25 02:21:28 +01:00
23 lines
746 B
Groovy
23 lines
746 B
Groovy
// 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
|
|
} |