forked from paul-griffith/ignition-extensions
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
36 lines (31 loc) · 1.04 KB
/
build.gradle.kts
File metadata and controls
36 lines (31 loc) · 1.04 KB
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
plugins {
alias(libs.plugins.modl)
}
ignitionModule {
name = "Ignition Extensions"
fileName = "Ignition-Extensions.modl"
id = "org.imdc.extensions.IgnitionExtensions"
moduleVersion = "${project.version}"
moduleDescription = "Useful but niche extensions to Ignition for power users"
license = "LICENSE.txt"
requiredIgnitionVersion = libs.versions.ignition
projectScopes.putAll(
mapOf(
projects.common.dependencyProject.path to "GDC",
projects.gateway.dependencyProject.path to "G",
projects.designer.dependencyProject.path to "D",
projects.client.dependencyProject.path to "C",
),
)
hooks.putAll(
mapOf(
"org.imdc.extensions.gateway.GatewayHook" to "G",
"org.imdc.extensions.designer.DesignerHook" to "D",
"org.imdc.extensions.client.ClientHook" to "C",
),
)
skipModlSigning = !findProperty("signModule").toString().toBoolean()
}
tasks.deployModl {
hostGateway = "http://localhost:18088"
}