You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031323334353637383940
  1. plugins {
  2. id 'org.springframework.boot' version '2.3.7.RELEASE'
  3. id 'io.spring.dependency-management' version '1.0.10.RELEASE'
  4. id 'java'
  5. }
  6. group = 'com.taiji'
  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. testImplementation('org.springframework.boot:spring-boot-starter-test') {
  15. exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
  16. }
  17. implementation group: 'com.alibaba', name: 'fastjson', version: '2.0.4'
  18. runtimeOnly 'mysql:mysql-connector-java'
  19. // https://mvnrepository.com/artifact/cn.hutool/hutool-all
  20. implementation group: 'cn.hutool', name: 'hutool-all', version: '5.8.10'
  21. annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
  22. // https://mvnrepository.com/artifact/io.minio/minio
  23. // compile('io.minio:minio:8.4.5') {
  24. // exclude module: "okhttp"
  25. // }
  26. implementation 'io.minio:minio:8.4.5'
  27. // https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
  28. implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.10.0'
  29. // https://mvnrepository.com/artifact/io.springfox/springfox-boot-starter
  30. implementation group: 'io.springfox', name: 'springfox-boot-starter', version: '3.0.0'
  31. implementation 'org.springframework:spring-test:5.3.10'
  32. }
  33. test {
  34. useJUnitPlatform()
  35. }