12345678910111213141516171819202122232425262728293031 |
- plugins {
- id 'groovy'
- id 'org.springframework.boot' version '2.6.0'
- id 'io.spring.dependency-management' version '1.0.15.RELEASE'
- }
- group = 'com.jd.brume'
- version = '0.0.1-SNAPSHOT'
- sourceCompatibility = '1.8'
- repositories {
- mavenCentral()
- }
- dependencies {
- implementation 'org.springframework.boot:spring-boot-starter-web'
- implementation 'org.codehaus.groovy:groovy'
- implementation 'com.baomidou:mybatis-plus-boot-starter:3.5.3'
- implementation 'mysql:mysql-connector-java'
- implementation 'cn.hutool:hutool-all:5.8.12'
- implementation 'org.springframework.boot:spring-boot-starter-validation'
- implementation 'org.bouncycastle:bcprov-jdk15to18:1.72'
- implementation 'org.springframework.boot:spring-boot-starter-data-redis'
- implementation 'com.alibaba:fastjson:2.0.26'
- implementation fileTree(dir:'lib',includes:['*jar'])
- testImplementation 'org.springframework.boot:spring-boot-starter-test'
- }
- tasks.named('test') {
- useJUnitPlatform()
- }
|