-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
81 lines (69 loc) · 1.83 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
plugins {
java
id("org.openjfx.javafxplugin") version "0.0.13"
id("com.github.ben-manes.versions") version "0.44.0"
idea
}
group = "de.groovybyte.chunky"
version = "1.0-ALPHA"
repositories {
mavenLocal()
mavenCentral()
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
maven(url = "https://repo.lemaik.de/")
}
dependencies {
implementation("se.llbit:chunky-core:2.5.0-SNAPSHOT") {
isChanging = true
}
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(11))
}
}
javafx {
version = "11.0.2"
modules = listOf("javafx.controls", "javafx.fxml")
}
tasks {
processResources {
filesMatching("plugin.json") {
expand(
"version" to project.version,
"chunkyVersion" to "2.5.0",
)
}
}
withType<JavaCompile> {
sourceCompatibility = "11"
targetCompatibility = "11"
}
// withType<Jar> {
// archiveFileName.set("${archiveBaseName.get()}.${archiveExtension.get()}")
// duplicatesStrategy = DuplicatesStrategy.EXCLUDE
// configurations["compileClasspath"].apply {
// files { dep ->
// when {
// dep.name.startsWith("chunky") -> false
// else -> true
// }
// }.forEach { file ->
// from(zipTree(file.absoluteFile))
// }
// }
// }
withType<DependencyUpdatesTask> {
val unstable = Regex("^.*?(?:alpha|beta|unstable|rc|ea).*\$", RegexOption.IGNORE_CASE)
rejectVersionIf {
candidate.version.matches(unstable)
}
}
}
idea {
module {
isDownloadJavadoc = true
isDownloadSources = true
}
}