Files
perfdb/build.gradle
ahr 3cc512f73d update third party libs
testng 6.11 -> 6.13.1
jackson-databind 2.9.1 -> 2.9.3
guava 23.0 -> 23.6-jre
2017-12-30 10:06:57 +01:00

41 lines
735 B
Groovy

apply plugin: 'java'
apply plugin: 'eclipse'
/*
* The shared configuration for all sub-projects:
*/
subprojects {
apply plugin: 'java'
apply plugin: 'eclipse'
// java compatibility version
sourceCompatibility = 1.8
configurations {
tests
}
// the repositories for external depenencies
repositories {
maven { url 'http://repo.lucares.de/' }
mavenCentral()
jcenter()
}
// In this example we use TestNG as our testing tool. JUnit is the default.
test{
useTestNG()
//testLogging.showStandardStreams = true
}
// dependencies that all sub-projects have
dependencies {
testCompile group: 'org.testng', name: 'testng', version: '6.13.1'
}
}
task wrapper(type: Wrapper) {
gradleVersion = '4.4'
}