aboutsummaryrefslogtreecommitdiff
path: root/buildSrc/src/main/groovy/ca/allanwang/kau/Dependencies.groovy
diff options
context:
space:
mode:
Diffstat (limited to 'buildSrc/src/main/groovy/ca/allanwang/kau/Dependencies.groovy')
-rw-r--r--buildSrc/src/main/groovy/ca/allanwang/kau/Dependencies.groovy10
1 files changed, 10 insertions, 0 deletions
diff --git a/buildSrc/src/main/groovy/ca/allanwang/kau/Dependencies.groovy b/buildSrc/src/main/groovy/ca/allanwang/kau/Dependencies.groovy
new file mode 100644
index 0000000..368b0a8
--- /dev/null
+++ b/buildSrc/src/main/groovy/ca/allanwang/kau/Dependencies.groovy
@@ -0,0 +1,10 @@
+package ca.allanwang.kau
+
+/**
+ * Some common dependencies, backed by the supplied versions
+ */
+class Dependencies {
+ static def kotlin = "org.jetbrains.kotlin:kotlin-stdlib:${Versions.kotlin}"
+ static def kotlinTest = "org.jetbrains.kotlin:kotlin-test-junit:${Versions.kotlin}"
+ static def junit = "junit:junit:${Versions.junit}"
+} \ No newline at end of file