-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjreleaser.yml
More file actions
58 lines (53 loc) · 1.44 KB
/
jreleaser.yml
File metadata and controls
58 lines (53 loc) · 1.44 KB
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
project:
name: miniterm
description: A minimal terminal library
longDescription: |
miniterm is a minimal terminal library for Java providing platform-specific
implementations for terminal manipulation. It includes a legacy Java 8+
implementation (miniterm), a modern Java 22+ FFM-based implementation
(miniterm-ffm), and a compact ANSI escape sequence parser (ansiparser).
authors:
- Tako Schotanus
tags:
- java
- terminal
- library
license: Apache-2.0
links:
homepage: https://github.com/codejive/miniterm
languages:
java:
groupId: org.codejive.miniterm
version: '8'
inceptionYear: '2024'
stereotype: NONE
# No assembly needed - Maven handles JARs
assemble:
enabled: false
# Maven Central deployment - all staging repos (parent + all submodules)
deploy:
maven:
mavenCentral:
miniterm:
active: RELEASE
url: https://central.sonatype.com/api/v1/publisher
stagingRepositories:
- target/staging-deploy
# GitHub release configuration
release:
github:
owner: codejive
name: java-miniterm
overwrite: true
changelog:
formatted: ALWAYS
preset: conventional-commits
contributors:
format: '- {{contributorName}}{{#contributorUsernameAsLink}} ({{.}}){{/contributorUsernameAsLink}}'
# Checksum generation
checksum:
individual: true
# GPG signing - required for Maven Central
signing:
active: ALWAYS
armored: true