build.gradle 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. implementation 'com.google.analytics:google-analytics-admin:0.59.0'
  27. implementation 'com.google.analytics:google-analytics-data:0.60.0'
  28. testImplementation 'org.springframework.boot:spring-boot-starter-test'
  29. testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
  30. }
  31. tasks.named('test') {
  32. useJUnitPlatform()
  33. }