httpwizard/build.gradle

20 lines
567 B
Groovy

apply plugin: 'groovy'
apply plugin: 'codenarc'
repositories {
jcenter()
}
dependencies {
compile localGroovy()
// The production code uses the SLF4J logging API at compile time
compile 'org.slf4j:slf4j-api:1.7.18'
// Declare the dependency for your favourite test framework you want to use in your tests.
// TestNG is also supported by the Gradle Test task. Just change the
// testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
// 'test.useTestNG()' to your build script.
testCompile 'junit:junit:4.12'
}