-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
46 lines (38 loc) · 1.09 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.10.0'
}
group 'one.goranson'
version '1.7'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
repositories {
mavenCentral()
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.20'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
implementation group: 'com.google.guava', name: 'guava', version: '30.1.1-jre'
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.20.2'
testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '3.11.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
testImplementation 'com.squareup.okhttp3:mockwebserver:4.9.1'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
updateSinceUntilBuild = false
version = '2022.3.2'
}
patchPluginXml {
changeNotes = """
<b>1.7</b> <br>
- Support for IntelliJ 2022.3.2 <br>
"""
}
test {
useJUnitPlatform()
}