forked from mjedynak/builder-generator-idea-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
48 lines (38 loc) · 1.03 KB
/
build.gradle.kts
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
plugins {
id("org.jetbrains.intellij") version "1.5.2"
}
group = "pl.mjedynak"
version = "1.2.0"
repositories {
mavenCentral()
}
dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.1")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.1")
testImplementation("org.mockito:mockito-junit-jupiter:4.6.1")
testImplementation("org.assertj:assertj-core:3.23.1")
testImplementation("org.springframework:spring-test:5.2.22.RELEASE")
}
// Configure Gradle IntelliJ Plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin
intellij {
version.set("2021.2")
type.set("IC") // Target IDE Platform
plugins.set(listOf("java"))
}
tasks {
// Set the JVM compatibility versions
withType<JavaCompile> {
sourceCompatibility = "11"
targetCompatibility = "11"
}
patchPluginXml {
sinceBuild.set("201.6668.121")
untilBuild.set("")
}
test {
useJUnitPlatform()
}
wrapper {
gradleVersion = "7.4.2"
}
}