-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjreleaser.yml
More file actions
71 lines (63 loc) · 1.94 KB
/
jreleaser.yml
File metadata and controls
71 lines (63 loc) · 1.94 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
59
60
61
62
63
64
65
66
67
68
69
70
71
# JReleaser configuration for java-tproxy library
# Publishes to Maven Central and GitHub Releases
# Requires GPG signing for Maven Central
project:
name: tproxy
description: A lightweight HTTP/HTTPS proxy library with pluggable interceptors and full MITM HTTPS support
longDescription: |
Java Transparent Proxy is a lightweight HTTP/HTTPS proxy library.
Key features:
- Full HTTP/1.1 proxy
- Man-in-the-Middle mode with on-the-fly certificate generation for HTTPS interception
- Secure tunneling via CONNECT for HTTPS pass-through (no decryption)
- Pluggable interceptors with chain-of-responsibility pattern
- Auto-generated CA with per-hostname server certificates using BouncyCastle
authors:
- Tako Schotanus
tags:
- java
- proxy
- http
- https
- mitm
- interceptor
- library
license: Apache-2.0
links:
homepage: https://github.com/codejive/java-tproxy
java:
groupId: org.codejive.tproxy
version: '21'
inceptionYear: '2026'
stereotype: NONE
# No assembly needed for libraries - Maven handles JARs
assemble:
enabled: false
# Maven Central deployment configuration
deploy:
maven:
mavenCentral:
tproxy:
active: RELEASE # Only deploy non-SNAPSHOT versions
url: https://central.sonatype.com/api/v1/publisher
stagingRepositories:
- target/staging-deploy
# GitHub release configuration
release:
github:
owner: codejive
name: java-tproxy
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
# No distributions section needed for library-only projects