build.gradle 989 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. plugins {
  2. id 'java'
  3. id 'org.springframework.boot' version '3.3.3'
  4. id 'io.spring.dependency-management' version '1.1.6'
  5. }
  6. group = 'com.wechi.adweb'
  7. version = '0.0.1-SNAPSHOT'
  8. java {
  9. toolchain {
  10. languageVersion = JavaLanguageVersion.of(17)
  11. }
  12. }
  13. repositories {
  14. mavenCentral()
  15. }
  16. dependencies {
  17. implementation 'org.springframework.boot:spring-boot-starter'
  18. implementation 'org.springframework:spring-context'
  19. implementation 'org.slf4j:slf4j-api'
  20. implementation 'org.apache.commons:commons-lang3'
  21. implementation 'com.google.guava:guava:33.0.0-jre'
  22. compileOnly 'org.projectlombok:lombok'
  23. annotationProcessor 'org.projectlombok:lombok'
  24. // Google
  25. implementation 'com.google.apis:google-api-services-tagmanager:v2-rev20240701-2.0.0'
  26. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  27. testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
  28. }
  29. tasks.named('test') {
  30. useJUnitPlatform()
  31. }