Skip to content

Commit a6d3299

Browse files
committed
Added quartz scheduler
1 parent 178e274 commit a6d3299

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

quartz-scheduler/build.gradle

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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+
}

0 commit comments

Comments
 (0)