build.gradle 954 B

12345678910111213141516171819202122232425262728293031
  1. plugins {
  2. id 'groovy'
  3. id 'org.springframework.boot' version '2.6.0'
  4. id 'io.spring.dependency-management' version '1.0.15.RELEASE'
  5. }
  6. group = 'com.jd.brume'
  7. version = '0.0.1-SNAPSHOT'
  8. sourceCompatibility = '1.8'
  9. repositories {
  10. mavenCentral()
  11. }
  12. dependencies {
  13. implementation 'org.springframework.boot:spring-boot-starter-web'
  14. implementation 'org.codehaus.groovy:groovy'
  15. implementation 'com.baomidou:mybatis-plus-boot-starter:3.5.3'
  16. implementation 'mysql:mysql-connector-java'
  17. implementation 'cn.hutool:hutool-all:5.8.12'
  18. implementation 'org.springframework.boot:spring-boot-starter-validation'
  19. implementation 'org.bouncycastle:bcprov-jdk15to18:1.72'
  20. implementation 'org.springframework.boot:spring-boot-starter-data-redis'
  21. implementation 'com.alibaba:fastjson:2.0.26'
  22. implementation fileTree(dir:'lib',includes:['*jar'])
  23. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  24. }
  25. tasks.named('test') {
  26. useJUnitPlatform()
  27. }