blob: a947c6032e5b676ca050e96a70c84e510d929cec (
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
|
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.tkruse.gradle:gradle-groovysh-plugin:1.0.8'
}
}
apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'org.akhikhl.gretty'
apply plugin: 'com.github.tkruse.groovysh'
repositories {
mavenCentral()
}
dependencies {
compile project(':juick-core')
compile project(':deps:com.juick.xmpp')
compile "org.apache.commons:commons-lang3:3.4"
compile "org.springframework:spring-jdbc:4.3.1.RELEASE"
providedCompile 'javax.servlet:javax.servlet-api:3.1.0'
compile 'javax.inject:javax.inject:1'
compile 'com.github.pengrad:java-telegram-bot-api:2.1.1'
compile 'com.neovisionaries:nv-websocket-client:1.27'
providedRuntime 'mysql:mysql-connector-java:5.1.39'
testCompile 'junit:junit:4.12'
}
compileJava.options.encoding = 'UTF-8'
gretty {
httpPort = 8080
contextPath = '/'
servletContainer = 'tomcat8'
}
|