aboutsummaryrefslogtreecommitdiff
path: root/kobalt
diff options
context:
space:
mode:
authorCedric Beust <cedric@beust.com>2015-11-30 20:52:18 -0800
committerCedric Beust <cedric@beust.com>2015-11-30 20:52:18 -0800
commit8b11a014bc7b9617da8ae0d20d2e044bf9fb1e89 (patch)
treeaa65cd34244fe95b4152a0ec6d3e6381dde477a0 /kobalt
parentd52416d28527a0c6f33ae031a35753cee62043ff (diff)
downloadtestng-8b11a014bc7b9617da8ae0d20d2e044bf9fb1e89.tar.gz
Refactor.
Diffstat (limited to 'kobalt')
-rw-r--r--kobalt/src/Build.kt15
1 files changed, 8 insertions, 7 deletions
diff --git a/kobalt/src/Build.kt b/kobalt/src/Build.kt
index 4fc08a46..a5337eba 100644
--- a/kobalt/src/Build.kt
+++ b/kobalt/src/Build.kt
@@ -21,16 +21,17 @@ val p = javaProject {
}
dependencies {
- compile("com.beust:jcommander:1.48")
- compile("com.google.inject:guice:4.0")
- compile("junit:junit:4.10")
- compile("org.apache.ant:ant:1.7.0")
- compile("org.beanshell:bsh:2.0b4")
- compile("org.yaml:snakeyaml:1.15")
+ compile("com.beust:jcommander:1.48",
+ "com.google.inject:guice:4.0",
+ "junit:junit:4.10",
+ "org.apache.ant:ant:1.7.0",
+ "org.beanshell:bsh:2.0b4",
+ "org.yaml:snakeyaml:1.15")
}
dependenciesTest {
- compile("org.assertj:assertj-core:2.0.0", "org.testng:testng:6.9.9")
+ compile("org.assertj:assertj-core:2.0.0",
+ "org.testng:testng:6.9.9")
}
test {