-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathbuild.gradle
56 lines (44 loc) · 1.14 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.11.0'
id 'org.jetbrains.kotlin.jvm' version '1.6.0'
id 'org.jetbrains.kotlin.kapt' version '1.6.0'
}
ext {
intellijPlatform = 'IU-2023.1'
intellijPlatformPlugins = ['java', 'DatabaseTools'] // DatabaseTools is for BPMN process 'debugging'
kotlinStdlib = '1.5.30'
kotlinApiVersion = '1.3' // It must be same as JB supplied Kotlin STDLIB i.e. for 2018 = 1.3. See https://youtrack.jetbrains.com/issue/KT-37435
mapstruct = '1.4.2.Final'
jackson = '2.15.2'
dom4j = '2.0.0'
junitJupiter = '5.6.2'
jsonPath = '2.8.0'
junitPlatformRunner = '1.6.2'
kluent = '1.68'
mockitoInline = '5.2.0'
mockitoKotlin = '2.2.0'
}
group = 'com.valb3r'
sourceCompatibility = 17
repositories {
mavenCentral()
}
intellij {
version = intellijPlatform
plugins = intellijPlatformPlugins
}
patchPluginXml.enabled = false
verifyPlugin.enabled = false
publishPlugin.enabled = false
allprojects {
apply plugin: 'jacoco'
jacoco {
toolVersion = '0.8.12'
}
}
subprojects {
tasks.withType(Test) {
useJUnitPlatform()
}
}