build.gradle
1.61 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
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.bazhuayun.analysis'
mainClassName = 'com.taover.bazhuayun.analysis.StartUp'
sourceCompatibility = 1.8
repositories {
maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/' }
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/' }
}
dependencies {
compile(
"com.thoughtworks.xstream:xstream:1.4.12",
"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-mail",
"mysql:mysql-connector-java",
"com.hankcs:hanlp:portable-1.7.5",
"com.aliyun.oss:aliyun-sdk-oss:2.0.7",
"com.alibaba:fastjson:1.2.72",
"com.alibaba:druid-spring-boot-starter:1.1.10",
"com.xuxueli:xxl-job-core:2.1.0",
"com.taover:com-taover-repository:2.1.22",
"com.taover:com-taover-easyexcel:2.2.14",
"com.taover:com-taover-util:1.1.112",
"cn.hutool:hutool-all:5.2.4",
"com.taover:com-taover-codegenerate:1.2.11",
"com.auth0:java-jwt:3.4.0",
"io.jsonwebtoken:jjwt:0.6.0"
)
}