-
Notifications
You must be signed in to change notification settings - Fork 8
/
jreleaser.yml
52 lines (48 loc) · 1.17 KB
/
jreleaser.yml
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
project:
name: lljzip
description: Lower level ZIP support for Java.
longDescription: Lower level ZIP support for Java, for when abstraction is not desired.
links:
homepage: https://github.com/Col-E/LL-Java-Zip
authors:
- Matt Coley
license: MIT
inceptionYear: 2022
stereotype: none
java:
version: 22
groupId: software.coley
artifactId: lljzip
release:
github:
overwrite: true
tagName: '{{projectVersion}}'
changelog:
formatted: ALWAYS
preset: conventional-commits
contributors:
format: '- {{contributorName}}{{#contributorUsernameAsLink}} ({{.}}){{/contributorUsernameAsLink}}'
distributions:
dist:
type: SINGLE_JAR
artifacts:
- path: target/{{projectName}}-{{projectVersion}}.jar
signing:
active: RELEASE
mode: MEMORY
armored: true
verify: true
artifacts: true
checksums: true
files: false
deploy:
maven:
nexus2:
maven-central:
active: RELEASE
url: https://s01.oss.sonatype.org/service/local
applyMavenCentralRules: true
stagingRepositories:
- target/staging-deploy
closeRepository: true
releaseRepository: true