-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
35 lines (27 loc) · 648 Bytes
/
Copy pathbuild.gradle.kts
File metadata and controls
35 lines (27 loc) · 648 Bytes
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
plugins {
id("org.jetbrains.intellij") version "1.13.3"
}
group = "ris58h.lacopom"
version = "1.2.0"
repositories {
mavenCentral()
}
dependencies {
testImplementation("junit:junit:4.13.1")
}
intellij {
version.set("2019.2") // Build against 'since' version
// version.set("LATEST-EAP-SNAPSHOT") // Check against 'latest' version
type.set("IC") // Target IDE Platform
plugins.set(listOf("maven"))
updateSinceUntilBuild.set(false)
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
tasks {
buildSearchableOptions {
enabled = false
}
}