aboutsummaryrefslogtreecommitdiff
path: root/juick-commands/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'juick-commands/build.gradle')
-rw-r--r--juick-commands/build.gradle19
1 files changed, 19 insertions, 0 deletions
diff --git a/juick-commands/build.gradle b/juick-commands/build.gradle
new file mode 100644
index 00000000..bfe85d98
--- /dev/null
+++ b/juick-commands/build.gradle
@@ -0,0 +1,19 @@
+version 'unspecified'
+
+apply plugin: 'java'
+
+sourceCompatibility = 1.8
+
+repositories {
+ mavenCentral()
+}
+
+dependencies {
+ compile project(':juick-server-core')
+
+ compile "org.springframework:spring-context-support:${rootProject.springFrameworkVersion}"
+ compile "org.projectlombok:lombok:1.16.14"
+ compile "org.slf4j:slf4j-api:1.7.24"
+
+ testCompile group: 'junit', name: 'junit', version: '4.12'
+}