mirror of
https://github.com/ysoftdevs/gradle-training.git
synced 2026-01-11 22:41:09 +01:00
29 lines
506 B
Groovy
29 lines
506 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'maven'
|
|
|
|
version = '0.1-SNAPSHOT'
|
|
group = 'com.sinusgear.training'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile group: 'org.testng', name: 'testng', version: '6.+'
|
|
}
|
|
|
|
test {
|
|
useTestNG()
|
|
}
|
|
|
|
uploadArchives {
|
|
repositories {
|
|
mavenDeployer {
|
|
repository(url: "file:///idea/training/repo")
|
|
// use timestamp, e.g.: 06-maven-deployer-0.1-20140408.195954-2
|
|
uniqueVersion = true
|
|
}
|
|
}
|
|
}
|
|
|