-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
51 lines (40 loc) · 944 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
40
41
42
43
44
45
46
47
48
49
50
51
plugins {
id 'org.jetbrains.intellij' version '0.5.0'
}
apply from: 'lib.gradle'
group 'io.microconfig'
version '1.6.2'
sourceCompatibility = 11
targetCompatibility = 11
apply plugin: 'idea'
apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'
repositories {
mavenLocal()
mavenCentral()
maven {
url "https://repo.spring.io/release"
}
}
intellij {
version 'IC-2020.1'
updateSinceUntilBuild false
}
patchPluginXml {
changeNotes """
· Update microconfig core to 4.9.3<br>
· Few fixes on multiline yaml parsing<br>
· Spread the word about microconfig if you enjoy using it :)<br>
"""
}
dependencies {
implementation platform(lib.spring_bom)
implementation lib.microconfig
compileOnly lib.lombok
annotationProcessor lib.lombok
testImplementation lib.junit, lib.mokito
}
test {
useJUnitPlatform()
exclude '**/*IT.class'
}