generated from mshdabiola/SkeletonMultiplatform
-
Notifications
You must be signed in to change notification settings - Fork 1
/
conveyor.conf
74 lines (59 loc) · 2.28 KB
/
conveyor.conf
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
// This is a hashbang include. You can run the command after the #! to see what
// configuration is being extracted from the Gradle build using the Conveyor plugin.
//include "#!./gradlew -q :composeApp2:printConveyorConfig"
include "#!./gradlew -q printConveyorConfig"
// This enables native library extraction, which improves app startup time and robustness.
// It's optional but a good idea to have it. You can remove this if you get tired of specifying
// system properties for Java libraries with native components.
//
// See https://hydraulic.dev/blog/11-in-jar-signing.html for more.
include required("https://raw.githubusercontent.com/hydraulic-software/conveyor/master/configs/jvm/extract-native-libraries.conf")
// Add the latest Java 17 JDK distributed by JetBrains.
include required("/stdlib/jdk/17/openjdk.conf")
// Config file documentation: https://conveyor.hydraulic.dev/latest/configs
app {
// This is optional. If not specified the last component of the rdns name will be turned into a display name.
display-name = "Hydraulic"
//version = "1.0.7"
vendor = "Mshdabiola"
description = "Template application"
contact-email = "mshdabiola@gmail.com"
// A global identifier for the app.
rdns-name = "com.mshdabiola.skeletonapp"
// Use the Compose logo as an icon and include it so we can pass it to the Window constructor.
//icons = icons/icon.svg
icons {
label = H
// gradient = "blue;pink"
gradient = "#8E4D31"
}
windows.inputs += TASK/rendered-icons/windows
linux.inputs += TASK/rendered-icons/linux
// For iteration speed. Remove for release.
//compression-level = low
// Check for and apply updates synchronously on every app launch instead of in the background.
// Consider removing this line for your own app!
// updates = aggressive
updates = background
license = "MIT"
vcs-url = "https://github.com/mshdabiola/hydraulic"
site {
// base-url = "localhost:3000"
github {
oauth-token = ${env.TOKEN}
pages-branch = "gh-pages"
}
}
jvm {
modules += java.net.http
modules += java.sql
}
}
app.jvm.extract-native-libraries = false
app.mac {
info-plist {
# Require Monterey or higher.
LSMinimumSystemVersion = 11.0
}
}
conveyor.compatibility-level = 14