123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- plugins {
- id 'org.springframework.boot' version '2.1.0.RELEASE'
- id 'io.spring.dependency-management' version '1.0.8.RELEASE'
- id 'java'
- }
- group = 'com.zoniot'
- version = '0.0.1-SNAPSHOT'
- sourceCompatibility = '1.8'
- configurations {
- compileOnly {
- extendsFrom annotationProcessor
- }
- }
- repositories {
- mavenLocal()
- maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
- }
- dependencies {
- implementation 'org.springframework.boot:spring-boot-starter'
- compileOnly 'org.projectlombok:lombok'
- annotationProcessor 'org.projectlombok:lombok'
- testImplementation('org.springframework.boot:spring-boot-starter-test') {
- exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
- }
- implementation('org.springframework.boot:spring-boot-starter-security')
- implementation('org.springframework.boot:spring-boot-starter-web')
- implementation('org.springframework.boot:spring-boot-starter-thymeleaf')
- implementation('org.springframework.boot:spring-boot-starter-aop')
- implementation('org.springframework.boot:spring-boot-starter-validation')
- implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
-
-
- compile('mysql:mysql-connector-java')
-
-
- compile('com.alibaba:druid-spring-boot-starter:1.1.9')
-
- compile('io.springfox:springfox-swagger2:2.7.0')
- compile('io.springfox:springfox-swagger-ui:2.7.0')
-
-
- compile('com.github.pagehelper:pagehelper-spring-boot-starter:1.2.10')
- compile ('org.apache.httpcomponents:httpclient:4.5.6')
-
- compile('com.alibaba:fastjson:1.2.41')
- compile('io.jsonwebtoken:jjwt:0.9.0')
-
- compile('org.springframework.boot:spring-boot-starter-data-redis')
- {
- exclude group: 'io.lettuce'
- }
- compile('redis.clients:jedis')
- compile('org.apache.commons:commons-pool2')
- compileOnly('org.projectlombok:lombok')
- testImplementation('org.springframework.boot:spring-boot-starter-test')
- compile('org.apache.commons:commons-lang3:3.4')
- compile('commons-collections:commons-collections:3.2.2')
-
- 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.bouncycastle:bcprov-jdk16:1.46')
-
- compile('com.aliyun:aliyun-java-sdk-core:4.1.0')
-
- compile('org.jdom:jdom:1.1')
- compile('org.springframework.boot:spring-boot-starter-amqp')
- }
- test {
- useJUnitPlatform()
- }
|