-
Notifications
You must be signed in to change notification settings - Fork 4
/
jreleaser.yml
52 lines (48 loc) · 1.28 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: dex-translator
description: A translation library for converting between Dalvik and JVM bytecode.
longDescription: A translation library for converting between Dalvik and JVM bytecode backed by Google's R8 project.
links:
homepage: https://github.com/Col-E/dex-translator/
authors:
- Matt Coley
license: MIT
inceptionYear: 2023
stereotype: none
java:
version: 11
groupId: software.coley
artifactId: dex-translator
release:
github:
overwrite: true
tagName: '{{projectVersion}}'
changelog:
formatted: ALWAYS
preset: conventional-commits
contributors:
format: '- {{contributorName}}{{#contributorUsernameAsLink}} ({{.}}){{/contributorUsernameAsLink}}'
distributions:
dist:
type: SINGLE_JAR
artifacts:
- path: translator-core/build/libs/translator-core-{{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:
- translator-core/build/staging-deploy
closeRepository: true
releaseRepository: true