-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
61 lines (55 loc) · 1.5 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
plugins {
alias(libs.plugins.hivemq.extension)
alias(libs.plugins.defaults)
alias(libs.plugins.oci)
alias(libs.plugins.license)
}
group = "com.hivemq.extensions"
description = "HiveMQ Allow All Extension - all MQTT clients are authorized"
hivemqExtension {
name = "Allow All Extension"
author = "HiveMQ"
priority = 0
startPriority = 0
sdkVersion = libs.versions.hivemq.extensionSdk
resources {
from("LICENSE")
}
}
dependencies {
compileOnly(libs.jetbrains.annotations)
}
oci {
registries {
dockerHub {
optionalCredentials()
}
}
imageMapping {
mapModule("com.hivemq", "hivemq-community-edition") {
toImage("hivemq/hivemq-ce")
}
}
imageDefinitions.register("main") {
allPlatforms {
dependencies {
runtime("com.hivemq:hivemq-community-edition:latest") { isChanging = true }
}
layers {
layer("hivemqExtension") {
contents {
permissions("opt/hivemq/", 0b111_111_101)
permissions("opt/hivemq/extensions/", 0b111_111_101)
into("opt/hivemq/extensions") {
from(zipTree(tasks.hivemqExtensionZip.flatMap { it.archiveFile }))
}
}
}
}
}
}
}
license {
header = rootDir.resolve("HEADER")
mapping("java", "SLASHSTAR_STYLE")
}