We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 178e274 commit a6d3299Copy full SHA for a6d3299
quartz-scheduler/build.gradle
@@ -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