aboutsummaryrefslogtreecommitdiff
path: root/juick-notifications/build.gradle
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2016-10-24 16:35:28 +0300
committerGravatar Vitaly Takmazov2016-10-24 16:35:28 +0300
commitf2789e9891751e913c951dcaf1f215788306dfc3 (patch)
tree1b7e9e71723c90a40ee20f86ff8f62d41d7815d7 /juick-notifications/build.gradle
parentd036163f4eebd357933d51db5e9d4c76a9ac54a9 (diff)
push component -> juick-notifications project
Diffstat (limited to 'juick-notifications/build.gradle')
-rw-r--r--juick-notifications/build.gradle37
1 files changed, 37 insertions, 0 deletions
diff --git a/juick-notifications/build.gradle b/juick-notifications/build.gradle
new file mode 100644
index 00000000..77258103
--- /dev/null
+++ b/juick-notifications/build.gradle
@@ -0,0 +1,37 @@
+apply plugin: 'java'
+apply plugin: 'war'
+apply plugin: 'org.akhikhl.gretty'
+apply plugin: 'com.github.ben-manes.versions'
+
+repositories {
+ mavenCentral()
+}
+
+dependencies {
+ compile project(':juick-core')
+ compile 'org.slf4j:slf4j-jdk14:1.7.21'
+ compile 'com.ganyo:gcm-server:1.1.0'
+ compile 'com.notnoop.apns:apns:1.0.0.Beta6'
+ def springFrameworkVersion = '4.3.3.RELEASE'
+ compile "org.springframework:spring-jdbc:${springFrameworkVersion}"
+ compile "org.springframework:spring-webmvc:${springFrameworkVersion}"
+ compile "org.springframework:spring-websocket:${springFrameworkVersion}"
+ def jacksonVersion = '2.8.4'
+ compile "com.fasterxml.jackson.core:jackson-core:${jacksonVersion}"
+ compile "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
+ compile "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:${jacksonVersion}"
+ compile 'javax.inject:javax.inject:1'
+ compile 'org.apache.httpcomponents:httpclient:4.5.2'
+ compile 'org.apache.commons:commons-dbcp2:2.1.1'
+ compile 'com.mitchellbosecke:pebble-spring4:2.2.3'
+ providedRuntime 'mysql:mysql-connector-java:5.1.39'
+}
+
+compileJava.options.encoding = 'UTF-8'
+
+gretty {
+ httpPort = 8080
+ contextPath = ''
+ servletContainer = 'tomcat8'
+}
+