|
@@ -1,7 +1,7 @@
|
|
|
plugins {
|
|
|
id 'java'
|
|
|
- id 'org.springframework.boot' version '3.3.3'
|
|
|
- id 'io.spring.dependency-management' version '1.1.6'
|
|
|
+ id 'org.springframework.boot' version '3.2.3'
|
|
|
+ id 'io.spring.dependency-management' version '1.1.4'
|
|
|
}
|
|
|
|
|
|
group = 'com.wechi.adweb'
|
|
@@ -18,7 +18,7 @@ repositories {
|
|
|
}
|
|
|
|
|
|
dependencies {
|
|
|
- implementation 'org.springframework.boot:spring-boot-starter'
|
|
|
+ implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
|
|
|
|
implementation 'org.springframework:spring-context'
|
|
|
implementation 'org.slf4j:slf4j-api'
|
|
@@ -28,13 +28,18 @@ dependencies {
|
|
|
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'
|
|
|
- testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
|
|
+ testImplementation 'org.junit.jupiter:junit-jupiter-api'
|
|
|
+ testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
|
|
|
}
|
|
|
|
|
|
tasks.named('test') {
|