plugins { id 'org.springframework.boot' version '2.7.5' id 'io.spring.dependency-management' version '1.0.15.RELEASE' id 'java' } group = 'com' sourceCompatibility = '1.8' repositories { mavenCentral() maven { url 'https://repo.spring.io/milestone' } } ext { set('springCloudVersion', "2020.0.0-M5") } dependencies { implementation 'org.springframework.boot:spring-boot-starter-jdbc' implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'com.baomidou:mybatis-plus-boot-starter:3.5.2' implementation 'com.baomidou:mybatis-plus-generator:3.1.0' implementation 'com.baomidou:dynamic-datasource-spring-boot-starter:3.4.1' implementation 'com.github.pagehelper:pagehelper-spring-boot-starter:1.4.1' compileOnly 'org.projectlombok:lombok' implementation 'com.auth0:java-jwt:3.4.0' implementation 'mysql:mysql-connector-java:8.0.31' implementation 'com.microsoft.sqlserver:mssql-jdbc:7.4.1.jre8' implementation 'com.alibaba:fastjson:1.2.76' implementation 'cn.hutool:hutool-captcha:5.8.5' implementation 'org.springframework.boot:spring-boot-starter-aop' implementation 'org.springframework.boot:spring-boot-starter-data-redis:2.5.4' //接口调用 implementation 'org.apache.httpcomponents:httpclient:4.5.2' implementation 'org.iherus:qrext4j:1.3.0' implementation 'cn.afterturn:easypoi-base:4.0.0' implementation 'cn.afterturn:easypoi-web:4.0.0' implementation 'cn.afterturn:easypoi-annotation:4.0.0' //rabbitMq implementation 'org.springframework.boot:spring-boot-starter-amqp' implementation 'org.springframework.boot:spring-boot-starter-security' //oss implementation 'com.aliyun:aliyun-java-sdk-core:4.5.13' implementation 'com.aliyun.oss:aliyun-sdk-oss:3.10.2' //excel导入导出 implementation 'org.apache.poi:poi:4.1.0' implementation 'org.apache.poi:poi-scratchpad:4.1.0' implementation 'org.apache.poi:poi-ooxml-schemas:4.1.0' implementation 'org.apache.poi:poi-ooxml:4.1.0' implementation 'org.apache.xmlbeans:xmlbeans:3.1.0' //redisson锁 implementation 'org.redisson:redisson:3.16.8' implementation fileTree(dir:'lib',includes:['*jar']) annotationProcessor 'org.projectlombok:lombok' developmentOnly 'org.springframework.boot:spring-boot-devtools' testImplementation('org.springframework.boot:spring-boot-starter-test') { exclude group: 'org.junit.vintage', module: 'junit-vintage-engine' } } dependencyManagement { imports { mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}" } } test { useJUnitPlatform() }