refactor the build.gradle file, extract publish tasks to separated gradle file

Former-commit-id: 539b8d16917a8a60e07a7f1466ce9ad0c84ca94e
This commit is contained in:
ma wei
2015-06-11 10:11:07 +08:00
parent 80276d5e4d
commit aa927e9168
5 changed files with 106 additions and 109 deletions

View 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
}