-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
53 lines (42 loc) · 1.14 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
49
50
51
52
53
plugins {
id("java")
id("org.jetbrains.intellij") version "1.15.0"
id ("org.openjfx.javafxplugin") version "0.0.13"
}
group = "com.elegant"
version = "1.0.4"
repositories {
mavenCentral()
}
dependencies {
implementation("com.sun.webkit:webview-deps:1.3.2")
implementation ("org.openjfx:javafx-controls:17")
implementation ("org.openjfx:javafx-web:17")
implementation("net.minidev:json-smart:2.4.10")
}
// Configure Gradle IntelliJ Plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin
intellij {
version.set("2022.2.4")
type.set("IC") // Target IDE Platform
plugins.set(listOf(/* Plugin Dependencies */))
}
tasks {
// Set the JVM compatibility versions
withType<JavaCompile> {
sourceCompatibility = "11"
targetCompatibility = "11"
}
patchPluginXml {
sinceBuild.set("222")
untilBuild.set("232.*")
}
dependencies{
implementation( "org.testcontainers:testcontainers:1.17.2")
}
publishPlugin {
token.set("perm:aXBsYWthcw==.OTItNjEyNw==.h04yLcW1ApAHB2YOa4zYJ8aGB3bRf6")
}
javafx {
version = "11.0.2"
}
}