-
Notifications
You must be signed in to change notification settings - Fork 2
/
jreleaser.json
72 lines (67 loc) · 1.71 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
{
"project": {
"name": "collector-sahab",
"description": "A tool for augmenting the static diff with runtime information",
"longDescription": "It gets the difference of values in the execution of two versions of a program and uses it to augment the static diff. The augmented diff is show on GitHub PRs.",
"authors": [
"algomaster99",
"khaes-kth",
"I-Al-Istannen"
],
"license": "The Unlicense",
"links": {
"homepage": "https://github.com/ASSERT-KTH/collector-sahab"
},
"java": {
"groupId": "io.github.chains-project",
"version": "11"
},
"inceptionYear": "2022"
},
"release": {
"github": {
"owner": "ASSERT-KTH",
"releaseName": "{{tagName}}",
"changelog": {
"formatted": "ALWAYS",
"preset": "conventional-commits",
"format": "- {{commitShortHash}} {{commitTitle}}",
"contributors": {
"format": "- {{contributorName}} ({{contributorUsernameAsLink}})"
}
},
"sign": true
}
},
"distributions": {
"collector-sahab": {
"type": "SINGLE_JAR",
"stereotype": "CLI",
"artifacts": [
{
"path": "main/target/{{distributionName}}-{{projectVersion}}-jar-with-dependencies.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"
]
}
}
}
}
}