build.gradle 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. plugins {
  2. id 'java'
  3. id 'org.springframework.boot' version '3.0.2'
  4. id 'io.spring.dependency-management' version '1.1.0'
  5. }
  6. group = 'com.hichina.main.back'
  7. version = '0.0.1-SNAPSHOT'
  8. sourceCompatibility = '17'
  9. repositories {
  10. maven { url "https://maven.aliyun.com/repository/public" }
  11. }
  12. dependencies {
  13. implementation 'org.springframework.boot:spring-boot-starter-web'
  14. implementation 'org.projectlombok:lombok:1.18.20'
  15. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  16. // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-security
  17. implementation 'org.springframework.boot:spring-boot-starter-security:3.0.2'
  18. developmentOnly 'org.springframework.boot:spring-boot-devtools'
  19. // https://mvnrepository.com/artifact/org.liquibase/liquibase-core
  20. implementation 'org.liquibase:liquibase-core:4.19.0'
  21. implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
  22. // https://mvnrepository.com/artifact/com.mysql/mysql-connector-j
  23. implementation 'com.mysql:mysql-connector-j:8.0.32'
  24. // https://mvnrepository.com/artifact/org.projectlombok/lombok
  25. compileOnly 'org.projectlombok:lombok:1.18.26'
  26. annotationProcessor 'org.projectlombok:lombok:1.18.26'
  27. testCompileOnly 'org.projectlombok:lombok:1.18.26'
  28. testAnnotationProcessor 'org.projectlombok:lombok:1.18.26'
  29. // https://mvnrepository.com/artifact/org.mybatis.spring.boot/mybatis-spring-boot-starter
  30. implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.1'
  31. // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-validation
  32. implementation 'org.springframework.boot:spring-boot-starter-validation:3.0.2'
  33. implementation 'com.aliyun.oss:aliyun-sdk-oss:3.16.1'
  34. // https://mvnrepository.com/artifact/com.aliyun/aliyun-java-sdk-core
  35. implementation 'com.aliyun:aliyun-java-sdk-core:4.6.3'
  36. // https://mvnrepository.com/artifact/com.aliyun/aliyun-java-sdk-dysmsapi
  37. implementation 'com.aliyun:aliyun-java-sdk-dysmsapi:2.2.1'
  38. // https://mvnrepository.com/artifact/com.aliyun/aliyun-java-sdk-sts
  39. implementation 'com.aliyun:aliyun-java-sdk-sts:3.1.0'
  40. // https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper-spring-boot-starter
  41. implementation 'com.github.pagehelper:pagehelper-spring-boot-starter:1.4.6'
  42. // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-logging
  43. implementation 'org.springframework.boot:spring-boot-starter-logging:3.0.3'
  44. }
  45. tasks.named('test') {
  46. useJUnitPlatform()
  47. }