blob: 908b8d2f25c91b05efb041650c853f7722dac9ac (
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
|
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.tkruse.gradle:gradle-groovysh-plugin:1.0.8'
}
}
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'
apply plugin: 'com.github.ben-manes.versions'
apply plugin: 'com.github.tkruse.groovysh'
repositories {
mavenCentral()
}
dependencies {
compile project(':juick-core')
compile project(':deps:com.juick.xmpp')
compile 'com.github.scribejava:scribejava-apis:3.1.0'
compile 'org.apache.httpcomponents:httpclient:4.5.2'
compile 'org.apache.commons:commons-lang3:3.4'
compile 'commons-io:commons-io:2.5'
compile "org.springframework:spring-jdbc:4.3.2.RELEASE"
compile 'org.apache.commons:commons-dbcp2:2.1.1'
compile 'net.coobird:thumbnailator:0.4.8'
compile 'com.github.ooxi:serialized-php-parser:0.5.0'
compile 'net.jodah:failsafe:0.9.2'
compile 'com.mitchellbosecke:pebble:2.2.2'
compile 'com.sun.mail:javax.mail:1.5.6'
providedCompile 'javax.servlet:javax.servlet-api:3.1.0'
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'
}
|