-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjreleaser.yml
More file actions
106 lines (98 loc) · 2.58 KB
/
Copy pathjreleaser.yml
File metadata and controls
106 lines (98 loc) · 2.58 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
project:
name: contracteer
description: The loyal guard of your API contracts.
longDescription: |
Contracteer verifies that your API implementation matches your OpenAPI specification
and provides a mock server that behaves exactly as your spec defines. Your OpenAPI
specification is the single source of truth -- Contracteer turns it into executable
tests and a faithful mock.
authors:
- Christophe Amory
license: Apache-2.0
inceptionYear: "2024"
tags:
- kotlin
- graalvm
- cli
links:
homepage: https://contracteer.dev
documentation: https://contracteer.dev
languages:
java:
groupId: dev.contracteer
version: "21"
multiProject: true
deploy:
maven:
mavenCentral:
contracteer:
active: ALWAYS
url: https://central.sonatype.com/api/v1/publisher
stagingRepositories:
- build/staging-deploy
applyMavenCentralRules: true
signing:
active: ALWAYS
armored: true
artifacts: true
release:
github:
owner: contracteer-dev
name: contracteer
tagName: '{{projectVersion}}'
releaseName: '{{projectName}} {{projectVersion}}'
overwrite: true
changelog:
formatted: ALWAYS
preset: conventional-commits
extraProperties:
categorizeScopes: "true"
hide:
categories:
- 'merge'
- 'allcontributors'
contributors:
- 'GitHub'
- 'allcontributors'
- 'dependabot'
assemble:
archive:
contracteer:
active: ALWAYS
attachPlatform: true
fileSets:
- input: '.'
includes:
- 'LICENSE'
- input: "contracteer-cli/build/native/nativeCompile"
output: 'bin'
includes: [ 'contracteer', 'contracteer.exe' ]
matrix:
rows:
- { platform: linux-aarch_64 }
- { platform: linux-x86_64 }
- { platform: osx-aarch_64 }
- { platform: osx-x86_64 }
- { platform: windows-x86_64 }
distributions:
contracteer:
executable:
windowsExtension: exe
applyDefaultMatrix: true
artifactPattern:
path: 'out/jreleaser/assemble/contracteer/archive/{{distributionName}}-{{projectVersion}}-{{matrix.platform}}.zip'
checksum:
individual: true
packagers:
brew:
active: ALWAYS
commitAuthor:
name: github-actions[bot]
email: github-actions[bot]@users.noreply.github.com
repository:
owner: contracteer-dev
name: homebrew-contracteer
username: github-actions
multiPlatform: true
livecheck:
- 'url "https://github.com/contracteer-dev/contracteer/releases/latest"'