1234567891011121314151617181920212223242526272829303132333435363738394041 |
- plugins {
- id 'java'
- id 'org.springframework.boot' version '3.3.3'
- id 'io.spring.dependency-management' version '1.1.6'
- }
- 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'
- 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'
- // Google
- implementation 'com.google.apis:google-api-services-tagmanager:v2-rev20240701-2.0.0'
- testImplementation 'org.springframework.boot:spring-boot-starter-test'
- testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
- }
- tasks.named('test') {
- useJUnitPlatform()
- }
|