-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
52 lines (43 loc) · 2.07 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
42
43
44
45
46
47
48
49
50
51
52
plugins{
id'org.springframework.boot' version'2.1.6.RELEASE'
id'java'
id'war'
}
apply plugin:'io.spring.dependency-management'
group='com.huige'
version='0.0.1-SNAPSHOT'
sourceCompatibility='1.8'
repositories{
mavenCentral()
}
dependencies{
/* 本地包 */
compile fileTree(dir:'libs',include:'*.jar')
/* Spring Boot*/
compile group: 'org.springframework.boot', name: 'spring-boot-starter', version: '2.1.6.RELEASE'
/* Srping Web*/
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '2.1.6.RELEASE'
/* Spring AOP*/
compile group: 'org.springframework.boot', name: 'spring-boot-starter-aop', version: '2.1.6.RELEASE'
/* Spring Security*/
compile group: 'org.springframework.boot', name: 'spring-boot-starter-security', version: '2.1.6.RELEASE'
/* thymeleaf */
compile group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf', version: '2.1.6.RELEASE'
/* Tomcat */
compile group: 'org.springframework.boot', name: 'spring-boot-starter-tomcat', version: '2.1.6.RELEASE'
/* Spring Test*/
testCompile group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '2.1.6.RELEASE'
/*TokenUtil Device*/
compile group: 'org.springframework.boot', name: 'spring-boot-starter-mobile', version: '1.5.21.RELEASE'
compile group: 'io.jsonwebtoken', name: 'jjwt', version: '0.9.1'
/* Servlet API*/
providedCompile group: 'javax.servlet', name: 'javax.servlet-api', version: '4.0.1'
/* 持久层 */
runtime group: 'mysql', name: 'mysql-connector-java', version: '5.1.47'
/*runtime group: 'com.oracle', name: 'ojdbc14', version: '10.2.0.4.0'*/
compile group: 'org.mybatis.spring.boot', name: 'mybatis-spring-boot-starter', version: '2.0.1'
/* ActiveMq*/
compile group: 'org.springframework.boot', name: 'spring-boot-starter-activemq', version: '2.1.6.RELEASE'
/* redis */
compile group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis', version: '2.1.6.RELEASE'
}