12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- plugins {
- id 'org.springframework.boot' version '2.2.6.RELEASE'
- id 'io.spring.dependency-management' version '1.0.9.RELEASE'
- id 'java'
- }
- group = 'com.zcxk'
- version = '0.0.1-SNAPSHOT'
- sourceCompatibility = '1.8'
- repositories {
- mavenLocal()
- maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
- mavenCentral()
- }
- dependencies {
- compileOnly 'org.projectlombok:lombok'
- annotationProcessor 'org.projectlombok:lombok'
- implementation 'org.springframework.boot:spring-boot-starter-web'
- implementation 'de.codecentric:spring-boot-admin-starter-client:2.2.2'
- compile('mysql:mysql-connector-java:5.1.47')
- //数据源连接池
- compile('com.alibaba:druid-spring-boot-starter:1.1.9')
- //swagger在线接口文档生成工具
- compile('io.springfox:springfox-swagger2:2.7.0')
- compile('io.springfox:springfox-swagger-ui:2.7.0')
- //json工具
- compile('com.alibaba:fastjson:1.2.41')
- //poi
- compile 'org.apache.poi:poi:3.17'
- compile 'org.apache.poi:poi-ooxml:3.17'
- compile 'org.apache.poi:poi-ooxml-schemas:3.17'
- compile('org.apache.commons:commons-lang3:3.4')
- implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
- compile group: 'com.alibaba', name: 'easyexcel', version: '2.2.6'
- //redis
- compile('org.springframework.boot:spring-boot-starter-data-redis')
- compile('org.springframework.boot:spring-boot-starter-amqp')
- compile('com.github.pagehelper:pagehelper-spring-boot-starter:1.2.10')
- testImplementation('org.springframework.boot:spring-boot-starter-test') {
- exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
- }
- }
- test {
- useJUnitPlatform()
- }
|