-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (34 loc) · 922 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
plugins {
id 'org.jetbrains.intellij' version '1.5.3'
id 'org.jetbrains.kotlin.jvm' version '1.6.21'
}
group 'dev.arunvelsriram.desccron'
version PLUGIN_VERSION
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "org.jetbrains.kotlin:kotlin-reflect"
implementation 'com.cronutils:cron-utils:9.1.6'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
testImplementation 'io.mockk:mockk:1.12.3'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version = 'IC-2021.3'
updateSinceUntilBuild = false
}
compileKotlin {
kotlinOptions.jvmTarget = "11"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "11"
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}