Skip to content
This repository was archived by the owner on Nov 27, 2025. It is now read-only.

Commit e4a18a4

Browse files
committed
Replace with Jreleaser
1 parent c7d727c commit e4a18a4

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

.github/workflows/jreleaser.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
project:
2+
name: embulk-input-randomj
3+
description: Embulk plugin for generate dummy records by Java.
4+
longDescription: |
5+
Embulk plugin for dummy records generation written in Java.
6+
Original: https://github.com/kumagi/embulk-input-random
7+
website: https://github.com/yuokada/embulk-input-randomj
8+
authors:
9+
- Yu Okada
10+
license: MIT
11+
links:
12+
homepage: https://github.com/yuokada/embulk-input-randomj
13+
scm: https://github.com/yuokada/embulk-input-randomj.git
14+
java:
15+
groupId: io.github.yuokada
16+
version: 0.7.0
17+
mainClass: io.github.yuokada.embulk.input.randomj.RandomjInputPlugin
18+
19+
release:
20+
github:
21+
owner: yuokada
22+
name: embulk-input-randomj
23+
tagName: '{{projectVersion}}'
24+
releaseName: 'v{{projectVersion}}'
25+
draft: false
26+
prerelease: false
27+
28+
signing:
29+
active: ALWAYS
30+
armored: true
31+
32+
deploy:
33+
maven:
34+
active: ALWAYS
35+
url: https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/
36+
coordinates:
37+
groupId: io.github.yuokada
38+
artifactId: embulk-input-randomj
39+
version: 0.7.0
40+
credentials:
41+
username: {{env.OSSRH_USERNAME}}
42+
password: {{env.OSSRH_PASSWORD}}
43+
sign: true
44+
close: true
45+
release: true

0 commit comments

Comments
 (0)