build.gradle
1.6 KB
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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.5.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'application'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group = 'com.taover.ai'
mainClassName = 'com.taover.ai.StartUp'
sourceCompatibility = 1.8
repositories {
jcenter()
maven{ url 'http://repository.sonatype.org/content/groups/public/' }
maven{ url 'https://repository.jboss.org/nexus/content/groups/public/' }
maven{ url 'http://nexus.taover.com:9001/repository/maven-releases/' }
}
ext{
poiVersion='3.16'
}
dependencies {
compile(
"org.springframework.boot:spring-boot-starter",
"org.springframework.boot:spring-boot-starter-web",
"org.springframework.boot:spring-boot-starter-jetty",
"org.springframework.boot:spring-boot-starter-data-jpa",
"org.springframework.boot:spring-boot-starter-thymeleaf",
"org.springframework.boot:spring-boot-starter-data-redis",
"mysql:mysql-connector-java",
"net.sf.json-lib:json-lib:2.2.3:jdk15",
"net.sf.ezmorph:ezmorph:1.0.4",
"org.apache.velocity:velocity:1.6.4",
"com.squareup.okhttp3:okhttp:3.14.1",
"com.alibaba:druid-spring-boot-starter:1.1.10",
"com.xuxueli:xxl-job-core:2.1.0",
"com.taover:com-taover-repository:2.1.2",
"com.taover:com-taover-dao:1.0.0",
"com.taover:com-taover-tools:1.0.0",
"com.taover:com-taover-util:1.1.28",
"com.taover:com-taover-codegenerate:1.2.11",
"com.hankcs:hanlp:portable-1.7.5",
"com.aliyun.oss:aliyun-sdk-oss:2.0.7"
)
}