1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- plugins {
- id 'java'
- id 'org.springframework.boot' version '3.2.3'
- id 'io.spring.dependency-management' version '1.1.4'
- }
- group = 'com.wechi.adweb'
- version = '0.0.1-SNAPSHOT'
- java {
- toolchain {
- languageVersion = JavaLanguageVersion.of(17)
- }
- }
- repositories {
- mavenCentral()
- }
- dependencies {
- implementation 'org.springframework.boot:spring-boot-starter-web'
- implementation 'org.springframework:spring-context'
- implementation 'org.slf4j:slf4j-api'
- implementation 'org.apache.commons:commons-lang3'
- implementation 'com.google.guava:guava:33.0.0-jre'
- compileOnly 'org.projectlombok:lombok'
- annotationProcessor 'org.projectlombok:lombok'
- // Swagger docs without additional configuration.
- // swagger-ui/index.html & v3/api-docs
- implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.4.0'
- // Google
- implementation 'com.google.apis:google-api-services-tagmanager:v2-rev20240701-2.0.0'
- implementation 'com.google.analytics:google-analytics-admin:0.59.0'
- implementation 'com.google.analytics:google-analytics-data:0.60.0'
- testImplementation 'org.springframework.boot:spring-boot-starter-test'
- testImplementation 'org.junit.jupiter:junit-jupiter-api'
- testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
- }
- tasks.named('test') {
- useJUnitPlatform()
- }
|