-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
build.gradle.kts
110 lines (90 loc) · 2.38 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
plugins {
id("java")
id("org.jetbrains.intellij") version "1.15.0"
id("idea")
}
group = "com.en_circle.slt"
version = "0.5.3"
idea {
module {
isDownloadJavadoc = true
isDownloadSources = true
}
}
repositories {
mavenCentral()
}
dependencies {
implementation("org.awaitility:awaitility:4.2.0")
implementation("org.watertemplate:watertemplate-engine:1.2.2")
implementation("org.rauschig:jarchivelib:1.2.0")
implementation("org.jsoup:jsoup:1.16.1")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.0")
}
sourceSets {
main {
java {
srcDirs("src/main/gen")
}
}
}
// Configure Gradle IntelliJ Plugin
// Read more: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
intellij {
version.set("2023.2")
pluginName.set("slt")
var ide = System.getenv("TARGET_IDE")
if (ide == null || "" == ide)
ide = extra["targetIDE"].toString()
type.set(ide) // Target IDE Platform
plugins.set(listOf(
/* Plugin Dependencies */))
}
tasks {
val sltZip = task("sltZip", Zip::class) {
from("src/main/lisp")
archiveFileName.set("slt.zip")
destinationDirectory.set(File("build/resources/main"))
include("**/*")
doFirst {
println("Zipping SLT to " + destinationDirectory.get())
}
eachFile{
println("Zipping $this")
}
doLast {
println("Done Zipping SLT")
}
outputs.upToDateWhen {
false
}
}
sltZip.mustRunAfter(processResources)
instrumentedJar {
dependsOn(sltZip)
}
jar {
dependsOn(sltZip)
}
// Set the JVM compatibility versions
withType<JavaCompile> {
sourceCompatibility = "17"
targetCompatibility = "17"
}
patchPluginXml {
sinceBuild.set("232")
untilBuild.set("242.*")
}
signPlugin {
try {
certificateChain.set(File("./signcerts/chain.crt").readText(Charsets.UTF_8))
privateKey.set(File("./signcerts/private.pem").readText(Charsets.UTF_8))
password.set(System.getenv("PRIVATE_KEY_PASSWORD"))
} catch (_: Exception) {
}
}
publishPlugin {
token.set(System.getenv("PUBLISH_TOKEN"))
}
}