12345678910111213141516171819202122232425262728293031323334353637383940 |
- 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()
- }
- 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.29'
- 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 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'
- }
- }
- tasks.named('test') {
- useJUnitPlatform()
- }
|