123456789101112131415161718192021222324252627282930313233 |
- plugins {
- id 'java'
- id 'org.springframework.boot' version '3.0.2'
- id 'io.spring.dependency-management' version '1.1.0'
- }
- group = 'com.sxtvs'
- version = '0.0.1-SNAPSHOT'
- sourceCompatibility = '17'
- configurations {
- compileOnly {
- extendsFrom annotationProcessor
- }
- }
- repositories {
- maven { url 'https://maven.aliyun.com/nexus/content/groups/public' }
- }
- dependencies {
- implementation 'org.apache.httpcomponents.client5:httpclient5:5.2.1'
- implementation 'org.apache.httpcomponents.client5:httpclient5-fluent:5.2.1'
- implementation 'org.springframework.boot:spring-boot-starter-data-redis'
- implementation 'org.springframework.boot:spring-boot-starter-web'
- compileOnly 'org.projectlombok:lombok'
- annotationProcessor 'org.projectlombok:lombok'
- testImplementation 'org.springframework.boot:spring-boot-starter-test'
- }
- tasks.named('test') {
- useJUnitPlatform()
- }
|