aboutsummaryrefslogtreecommitdiff
path: root/juick-ws/build.gradle
blob: 8200b4081b006fa9ece63da32504b1100a77d8d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
plugins {
    id "com.moowork.node" version "0.13"
}

task compileFrontend(type: NpmTask) {
    args = ['run', 'compile']
}

apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'org.akhikhl.gretty'

repositories {
    mavenCentral()
}

dependencies {
    compile project(':juick-core')
    compile project(':deps:com.juick.xmpp')
    providedCompile 'javax.servlet:javax.servlet-api:3.1.0'
    def springFrameworkVersion = '4.3.2.RELEASE'
    compile "org.springframework:spring-jdbc:${springFrameworkVersion}"
    compile "org.springframework:spring-webmvc:${springFrameworkVersion}"
    compile "org.springframework:spring-websocket:${springFrameworkVersion}"
    def jacksonVersion = '2.8.1'
    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.1'
    compile 'org.apache.commons:commons-dbcp2:2.0'
    compile 'com.mitchellbosecke:pebble-spring4:2.2.2'
    providedRuntime 'mysql:mysql-connector-java:5.1.39'
}

compileFrontend.dependsOn 'npmInstall'
war.dependsOn 'compileFrontend'
compileJava.options.encoding = 'UTF-8'

gretty {
    httpPort = 8080
    contextPath = ''
    servletContainer = 'tomcat8'
}