File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ plugins {
2+ id ' java'
3+ id ' org.springframework.boot' version ' 3.2.2'
4+ id ' io.spring.dependency-management' version ' 1.1.4'
5+ }
6+
7+ group = ' com.stacktips'
8+ version = ' 0.0.1-SNAPSHOT'
9+
10+ java {
11+ sourceCompatibility = ' 17'
12+ }
13+
14+ configurations {
15+ compileOnly {
16+ extendsFrom annotationProcessor
17+ }
18+ }
19+
20+ repositories {
21+ mavenCentral()
22+ }
23+
24+ dependencies {
25+ implementation ' org.springframework.boot:spring-boot-starter-web'
26+ testImplementation ' org.springframework.boot:spring-boot-starter-test'
27+ implementation ' org.springframework.boot:spring-boot-starter-quartz'
28+
29+
30+ implementation ' com.opencsv:opencsv:5.9'
31+ implementation ' org.springframework.boot:spring-boot-starter-actuator'
32+
33+ }
34+
35+ tasks. named(' test' ) {
36+ useJUnitPlatform()
37+ }
You can’t perform that action at this time.
0 commit comments