-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathbuild.gradle.kts
288 lines (248 loc) · 8.72 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
@file:Suppress("UNCHECKED_CAST")
import groovy.lang.Closure
import io.github.fvarrui.javapackager.gradle.PackagePluginExtension
import io.github.fvarrui.javapackager.gradle.PackageTask
import io.github.fvarrui.javapackager.model.*
import io.github.fvarrui.javapackager.model.Platform
import org.apache.tools.ant.filters.ReplaceTokens
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import java.time.LocalDateTime
import java.time.format.DateTimeFormatter
plugins {
`java-library`
kotlin("jvm") version "2.0.0"
}
buildscript {
repositories {
mavenLocal()
maven {
url = uri("https://packages.aliyun.com/maven/repository/2048752-snapshot-C7TcE7")
credentials {
username = "662c9a1d2df38b0129acf288"
password = "pub-user"
}
}
maven {
url = uri("https://packages.aliyun.com/maven/repository/2048752-release-f1IHDo")
credentials {
username = "662c9a1d2df38b0129acf288"
password = "pub-user"
}
}
dependencies {
classpath("io.github.fvarrui:javapackager:1.7.5")
}
}
}
plugins.apply("io.github.fvarrui.javapackager.plugin")
allprojects {
repositories {
mavenLocal()
maven {
url = uri("https://packages.aliyun.com/maven/repository/2048752-snapshot-C7TcE7")
credentials {
username = "662c9a1d2df38b0129acf288"
password = "pub-user"
}
}
maven {
url = uri("https://packages.aliyun.com/maven/repository/2048752-release-f1IHDo")
credentials {
username = "662c9a1d2df38b0129acf288"
password = "pub-user"
}
}
}
}
version = "2024.1"
val applicationName: String = "RedisFront"
val organization: String = "dromara.org"
val supportUrl: String = "https://redisfront.dromara.org"
val hutoolVersion = "5.8.21"
val fifesoftVersion = "3.2.0"
val derbyVersion = "10.15.2.0"
val lettuceVersion = "6.2.0.RELEASE"
val logbackVersion = "1.4.12"
val fatJar = false
val requireModules = listOf(
"java.desktop",
"java.prefs",
"java.base",
"java.logging",
"java.sql",
"java.naming"
)
if (JavaVersion.current() < JavaVersion.VERSION_17)
throw RuntimeException("compile required Java ${JavaVersion.VERSION_17}, current Java ${JavaVersion.current()}")
val dateTimeFormatter: DateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")
println()
println("-------------------------------------------------------------------------------")
println("$name Version: $version")
println("Project Path: $projectDir")
println("Java Version: ${System.getProperty("java.version")}")
println("Gradle Version: ${gradle.gradleVersion} at ${gradle.gradleHomeDir}")
println("Current Date: ${LocalDateTime.now().format(dateTimeFormatter)}")
println("-------------------------------------------------------------------------------")
println()
dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.0")
testImplementation("org.junit.jupiter:junit-jupiter-params:5.9.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.0")
implementation("io.lettuce:lettuce-core:${lettuceVersion}")
implementation("io.netty:netty-common:4.1.82.Final")
implementation("org.jfree:jfreechart:1.5.3")
implementation("cn.hutool:hutool-extra:${hutoolVersion}")
implementation("cn.hutool:hutool-json:${hutoolVersion}")
implementation("cn.hutool:hutool-http:${hutoolVersion}")
implementation("org.apache.derby:derby:${derbyVersion}")
implementation("com.fifesoft:rsyntaxtextarea:${fifesoftVersion}")
implementation("com.fifesoft:rstaui:${fifesoftVersion}")
implementation("ch.qos.logback:logback-classic:${logbackVersion}")
implementation("at.swimmesberger:swingx-core:1.6.8")
implementation("commons-net:commons-net:3.9.0")
implementation("org.bouncycastle:bcpkix-jdk15on:1.70")
implementation("org.bouncycastle:bcprov-jdk15on:1.70")
implementation("com.intellij:forms_rt:7.0.3")
implementation("com.jcraft:jsch:0.1.55")
implementation("com.jcraft:jsch:0.1.55")
implementation("org.dromara:quick-swing:1.1-SNAPSHOT")
implementation(kotlin("stdlib-jdk8"))
}
repositories {
mavenCentral()
}
tasks.test {
useJUnitPlatform()
testLogging.exceptionFormat = TestExceptionFormat.FULL
}
tasks.compileJava {
options.encoding = "utf-8"
options.isDeprecation = false
}
tasks.processResources {
filesMatching("application.properties") {
filter<ReplaceTokens>(
"tokens" to mapOf(
"copyright" to "Copyright © 2022-${LocalDateTime.now().plusYears(1).year} $applicationName",
"version" to "$version"
)
)
}
}
tasks.jar {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
manifest {
attributes("Main-Class" to "org.dromara.redisfront.application.Application")
attributes("Implementation-Vendor" to "redisfront.dromara.org")
attributes("Implementation-Copyright" to "redisfront")
attributes("Implementation-Version" to project.version)
attributes("Multi-Release" to "true")
}
exclude("module-info.class")
exclude("META-INF/versions/*/module-info.class")
exclude("META-INF/*.SF")
exclude("META-INF/*.DSA")
exclude("META-INF/*.LIST")
exclude("META-INF/*.factories")
if (fatJar) {
from({
configurations.runtimeClasspath.get()
.filter { it.name.endsWith("jar") }
.map {
zipTree(it).matching {
exclude("META-INF/LICENSE")
}
}
})
}
from("${rootDir}/LICENSE") {
into("META-INF")
}
}
configure<PackagePluginExtension> {
mainClass("org.dromara.redisfront.application.Application")
packagingJdk(File(System.getProperty("java.home")))
bundleJre(true)
customizedJre(true)
modules(requireModules)
jreDirectoryName("runtimes")
}
tasks.register<PackageTask>("packageForWindows") {
val innoSetupLanguageMap = LinkedHashMap<String, String>()
innoSetupLanguageMap["Chinese"] = "compiler:Languages\\ChineseSimplified.isl"
innoSetupLanguageMap["English"] = "compiler:Default.isl"
description = "package For Windows"
organizationName = organization
organizationUrl = supportUrl
platform = Platform.windows
isCreateZipball = false
winConfig(closureOf<WindowsConfig> {
icoFile = getIcon("RedisFront.ico")
headerType = HeaderType.gui
originalFilename = applicationName
copyright = applicationName
productName = applicationName
productVersion = version
fileVersion = version
isGenerateSetup = true
setupLanguages = innoSetupLanguageMap
isCreateZipball = true
isGenerateMsi = false
isGenerateMsm = false
msiUpgradeCode = version
isDisableDirPage = false
isDisableFinishedPage = false
isDisableWelcomePage = false
} as Closure<WindowsConfig>)
dependsOn(tasks.build)
}
tasks.register<PackageTask>("packageForLinux") {
description = "package For Linux"
platform = Platform.linux
organizationName = organization
organizationUrl = supportUrl
linuxConfig(
closureOf<LinuxConfig> {
pngFile = getIcon("RedisFront.png")
isGenerateDeb = true
isGenerateRpm = true
isCreateTarball = true
isGenerateInstaller = true
categories = listOf("Office")
} as Closure<LinuxConfig>
)
dependsOn(tasks.build)
}
tasks.register<PackageTask>("packageForMac_arm") {
description = "package For Mac"
platform = Platform.mac
organizationName = organization
organizationUrl = supportUrl
macConfig(
closureOf<MacConfig> {
icnsFile = getIcon("RedisFront.icns")
isGenerateDmg = true
macStartup = MacStartup.ARM64
} as Closure<MacConfig>
)
dependsOn(tasks.build)
}
tasks.register<PackageTask>("packageForMac_x86") {
description = "package For Mac"
platform = Platform.mac
organizationName = organization
organizationUrl = supportUrl
macConfig(
closureOf<MacConfig> {
icnsFile = getIcon("RedisFront.icns")
isGenerateDmg = true
macStartup = MacStartup.X86_64
} as Closure<MacConfig>
)
dependsOn(tasks.build)
}
fun getIcon(fileName: String): File {
return File(projectDir.absolutePath + File.separator + "assets" + File.separator + fileName)
}