You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
590 B
Groovy
22 lines
590 B
Groovy
group 'net.pingex'
|
|
version '0.1-dev'
|
|
|
|
apply plugin: 'java'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
// Logging
|
|
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.6.1'
|
|
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.6.1'
|
|
|
|
// Configuration framework
|
|
compile group: 'org.apache.commons', name: 'commons-configuration2', version: '2.0'
|
|
runtime group: 'commons-beanutils', name: 'commons-beanutils', version: '1.9.2'
|
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.11'
|
|
} |