You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
885 B
39 lines
885 B
plugins { |
|
id 'java' |
|
id 'org.springframework.boot' version '4.0.0-SNAPSHOT' |
|
id 'io.spring.dependency-management' version '1.1.7' |
|
} |
|
|
|
group = 'com.redis' |
|
version = '0.0.1-SNAPSHOT' |
|
|
|
java { |
|
toolchain { |
|
languageVersion = JavaLanguageVersion.of(17) |
|
} |
|
} |
|
|
|
configurations { |
|
compileOnly { |
|
extendsFrom annotationProcessor |
|
} |
|
} |
|
|
|
repositories { |
|
mavenCentral() |
|
maven { url 'https://repo.spring.io/milestone' } |
|
maven { url 'https://repo.spring.io/snapshot' } |
|
} |
|
|
|
dependencies { |
|
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' |
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher' |
|
} |
|
|
|
tasks.named('test') { |
|
useJUnitPlatform() |
|
}
|
|
|