aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
blob: 84617e957014c363389a930d7520723eb83cf762 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
subprojects {
    apply plugin: 'java'
    repositories {
        mavenCentral()
    }
}
buildscript {
    repositories {
        mavenCentral()
        jcenter()
    }
    dependencies {
        classpath 'org.akhikhl.gretty:gretty:+'
        classpath 'com.tkruse.gradle:gradle-groovysh-plugin:1.0.7'
    }
}

apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'org.akhikhl.gretty'
apply plugin: 'com.github.tkruse.groovysh'

repositories {
    mavenCentral()
}

def core = project(':deps:com.juick')
def server = project(':deps:com.juick.server')
def xmpp = project(':deps:com.juick.xmpp')
def json = project(':deps:com.juick.json')

project(':deps:com.juick.server') {
    dependencies {
        compile core
    }
}
project(':deps:com.juick.xmpp') {
    dependencies {
        compile core
    }
}
project(':deps:com.juick.json') {
    dependencies {
	compile core
    }
}
configurations.all {
    exclude group: "commons-logging", module: "commons-logging"
}
dependencies {
    compile core
    compile server
    compile xmpp
    compile json
    compile "org.apache.commons:commons-lang3:3.4"
    compile "org.springframework:spring-jdbc:4.2.6.RELEASE"
    providedCompile 'javax.servlet:javax.servlet-api:3.1.0'
    compile 'javax.inject:javax.inject:1'
    runtime 'mysql:mysql-connector-java:5.1.39'
    testRuntime 'com.h2database:h2:1.4.190'
}
compileJava.options.encoding = 'UTF-8'
gretty {
    httpPort = 8080
    contextPath = '/'
    servletContainer = 'tomcat8'
}