httpwizard/build.gradle

20 lines
567 B
Groovy
Raw Normal View History

2016-12-18 17:51:25 +00:00
2016-12-18 17:57:14 +00:00
apply plugin: 'groovy'
apply plugin: 'codenarc'
2016-12-18 17:51:25 +00:00
repositories {
jcenter()
}
dependencies {
2016-12-18 17:57:14 +00:00
compile localGroovy()
2016-12-18 17:51:25 +00:00
// 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'
}