initial check in

Former-commit-id: 2be8565868e6c8d62f86fcd7c70d350464c667c6
This commit is contained in:
ma wei
2015-05-07 11:25:31 +08:00
parent bcc2173768
commit 8fbf8df0bd
9 changed files with 342 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
apply plugin: 'idea'
apply plugin: 'groovy'
apply plugin: 'maven'
repositories {
mavenCentral()
}
dependencies {
compile localGroovy()
compile gradleApi()
}
group = 'com.tools.security'
version = '0.0.1'
uploadArchives {
repositories {
mavenDeployer {
repository(url: uri('../repo'))
}
}
}