forked from keikai/keikai-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (32 loc) · 964 Bytes
/
build.gradle
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
apply plugin: 'war'
apply plugin: 'org.akhikhl.gretty'
apply plugin: 'idea'
//gretty
buildscript {
repositories { jcenter() }
dependencies { classpath 'org.akhikhl.gretty:gretty:+' }
}
ext.jetty94Version = '9.4.10.v20180503'
gretty.servletContainer = 'jetty9.4'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
mavenLocal() // remove when keikai client is published
maven { url "http://mavensync.zkoss.org/eval" }
}
dependencies {
compile "io.keikai:keikai-java-client:1.0.0-alpha.2-SNAPSHOT"
compile "commons-io:commons-io:2.5"
compile "org.hsqldb:hsqldb:2.3.4"
compile "org.hsqldb:sqltool:2.3.4"
compile "org.apache.commons:commons-lang3:3.1"
runtime "javax.servlet:javax.servlet-api:3.0.1"
testCompile "junit:junit:4.12"
}
//https://docs.gradle.org/current/dsl/org.gradle.plugins.ide.idea.model.IdeaModule.html
idea {
module {
downloadJavadoc = true
}
}