-
Notifications
You must be signed in to change notification settings - Fork 27
/
jreleaser.json
73 lines (68 loc) · 1.83 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
{
"project": {
"name": "sorald",
"description": "Automatic repair system for static analysis warnings from SonarQube's SonarJava",
"longDescription": "Sorald is a tool to automatically repair violations of static analysis rules checked with SonarQube. It can currently repair violations of 25+ rules based on the design described Sorald: Automatic Patch Suggestions for SonarQube Static Analysis Violations.",
"authors": [
"slarse",
"algomaster99",
"khaes-kth",
"fermadeiral"
],
"license": "MIT",
"links": {
"homepage": "https://github.com/SpoonLabs/sorald"
},
"java": {
"groupId": "se.kth.castor",
"version": "11"
},
"inceptionYear": "2018"
},
"release": {
"github": {
"owner": "SpoonLabs",
"tagName": "sorald-{{projectVersion}}",
"releaseName": "{{tagName}}",
"changelog": {
"formatted": "ALWAYS",
"preset": "conventional-commits",
"format": "- {{commitShortHash}} {{commitTitle}}",
"contributors": {
"format": "- {{contributorName}} ({{contributorUsernameAsLink}})"
}
}
}
},
"distributions": {
"sorald": {
"type": "SINGLE_JAR",
"stereotype": "CLI",
"artifacts": [
{
"path": "sorald/target/{{distributionName}}-{{projectVersion}}-jar-with-dependencies.jar"
}
],
"tags": ["sonarqube", "program-repair"]
}
},
"signing": {
"active": "ALWAYS",
"armored": true
},
"deploy": {
"maven": {
"nexus2": {
"maven-central": {
"active": "ALWAYS",
"url": "https://oss.sonatype.org/service/local",
"closeRepository": true,
"releaseRepository": true,
"stagingRepositories": [
"target/staging-deploy"
]
}
}
}
}
}