1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- plugins {
- id 'org.springframework.boot' version '2.3.1.RELEASE'
- id 'io.spring.dependency-management' version '1.0.9.RELEASE'
- id 'java'
- }
- group = 'com.zcxk'
- version = '0.0.1-SNAPSHOT'
- sourceCompatibility = '1.8'
- configurations {
- compileOnly {
- extendsFrom annotationProcessor
- }
- }
- repositories {
- mavenLocal()
- maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
- mavenCentral()
- }
- dependencies {
- //implementation project(':smart-city-common')
- compile 'com.zcxk.zoniot:smart-city-common:0.0.1'
- implementation 'org.springframework.boot:spring-boot-starter-web'
- implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
- implementation('org.springframework.boot:spring-boot-starter-data-redis')
- implementation 'com.xuxueli:xxl-job-core:2.2.0'
- //swagger在线接口文档生成工具
- compile('io.springfox:springfox-swagger2:2.7.0')
- compile('io.springfox:springfox-swagger-ui:2.7.0')
- compile('mysql:mysql-connector-java')
- //数据源连接池
- compile('com.alibaba:druid-spring-boot-starter:1.1.9')
- compile('com.github.pagehelper:pagehelper-spring-boot-starter:1.2.10')
- compile('com.alibaba:fastjson:1.2.41')
-
- 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'
- }
- }
- test {
- useJUnitPlatform()
- }
|