blob: 64e1140f6e1a9ffa7c2b80a2a81bd24e49e5130c [file] [log] [blame]
linqing.hefd9ae532019-05-14 10:29:01 +08001plugins {
2 id 'org.springframework.boot' version '2.1.4.RELEASE'
3 id 'java'
4}
5
6apply plugin: 'io.spring.dependency-management'
7
8group = 'com.supwisdom'
9version = '0.0.1-SNAPSHOT'
10sourceCompatibility = '1.8'
11
12repositories {
13 mavenCentral()
14 jcenter()
15}
16
17dependencies {
18
19 implementation 'org.springframework.boot:spring-boot-starter-security'
20 implementation 'org.springframework.boot:spring-boot-starter-validation'
21 implementation 'org.springframework.boot:spring-boot-starter-web'
22 implementation 'org.springframework.boot:spring-boot-starter-websocket'
23 implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
24 implementation 'org.springframework.boot:spring-boot-starter-logging'
25 implementation 'org.springframework.boot:spring-boot-devtools'
26
27 implementation 'org.springframework:springloaded:1.2.8.RELEASE'
28
29 // implementation 'org.flywaydb:flyway-core'
30
31 compile files('libs/ojdbc6.jar')
32 //数据库池
33 implementation 'com.alibaba:druid:1.1.16'
34
35 implementation 'org.springframework.security:spring-security-taglibs:5.1.5.RELEASE'
36 //j2ee
37 implementation 'javax.servlet:jstl:1.2'
38 implementation 'javax.servlet:javax.servlet-api:4.0.1'
39 implementation 'org.apache.tomcat.embed:tomcat-embed-jasper:9.0.19'
40 implementation 'org.apache.tomcat:jsp-api:6.0.53'
41 //sitemesh
42 implementation 'org.sitemesh:sitemesh:3.0.1'
43
44 //commons-lang
45 implementation 'commons-lang:commons-lang:2.6'
46 //json
47 implementation 'com.fasterxml.jackson.datatype:jackson-datatype-hibernate5:2.9.8'
48
49 testImplementation 'org.springframework.boot:spring-boot-starter-test'
50 testImplementation 'org.springframework.security:spring-security-test'
51}