-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
41 lines (36 loc) · 1.23 KB
/
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
40
41
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.2.2.RELEASE")
}
}
plugins {
id 'org.springframework.boot' version '2.2.2.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'java'
}
group = 'org.zkoss.demo'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenLocal()
maven { url "https://mavensync.zkoss.org/maven2" }
maven { url "https://mavensync.zkoss.org/eval" }
maven { url "http://jaspersoft.jfrog.io/jaspersoft/third-party-ce-artifacts/" } //for jasper reports
mavenCentral()
}
dependencies {
def withoutSlf4J = { exclude group: "org.slf4j", module: "slf4j-jdk14" }
compile "org.zkoss.zkspringboot:zkspringboot-starter:${zkspringbootVersion}"
compile "org.zkoss.zk:zk:${zkVersion}", withoutSlf4J
compile "org.zkoss.zk:zkbind:${zkVersion}", withoutSlf4J
compile "org.zkoss.zk:zkmax:${zkVersion}", withoutSlf4J
compile "org.zkoss.zk:zkplus:${zkVersion}", withoutSlf4J
//comment out the below for embedded tomcat
compile "org.springframework.boot:spring-boot-starter-web"
}
bootRun {
main = 'org.zkoss.demo.forum.ForumApplication'
}