-
Notifications
You must be signed in to change notification settings - Fork 0
/
jreleaser.json
79 lines (74 loc) · 1.86 KB
/
jreleaser.json
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
{
"project": {
"name": "terminator",
"description": "Monitors Java application and disrupts it if a prohibited class is loaded.",
"longDescription": "Generates fingerprints of each classfile and verify them during runtime. If a prohibited class is loaded, the application is terminated.",
"authors": [
"algomaster99"
],
"license": "MIT",
"links": {
"homepage": "https://github.com/chains-project/sbom.exe"
},
"java": {
"groupId": "io.github.algomaster99",
"version": "11"
},
"inceptionYear": "2023"
},
"release": {
"github": {
"owner": "chains-project",
"releaseName": "{{tagName}}",
"changelog": {
"formatted": "ALWAYS",
"preset": "conventional-commits",
"format": "- {{commitShortHash}} {{commitTitle}}",
"contributors": {
"format": "- {{contributorName}} ({{contributorUsernameAsLink}})"
}
},
"sign": true
}
},
"distributions": {
"classfile-fingerprint": {
"type": "SINGLE_JAR",
"stereotype": "CLI",
"artifacts": [
{
"path": "classfile-fingerprint/target/{{distributionName}}-{{projectVersion}}.jar"
}
]
},
"watchdog-agent": {
"type": "SINGLE_JAR",
"stereotype": "CLI",
"artifacts": [
{
"path": "watchdog-agent/target/{{distributionName}}-{{projectVersion}}.jar"
}
]
}
},
"signing": {
"active": "ALWAYS",
"armored": true,
"verify": true
},
"deploy": {
"maven": {
"nexus2": {
"maven-central": {
"active": "ALWAYS",
"url": "https://s01.oss.sonatype.org/service/local",
"closeRepository": true,
"releaseRepository": true,
"stagingRepositories": [
"target/staging-deploy"
]
}
}
}
}
}