Skip to content

Commit e6174f5

Browse files
committed
github packages integration
1 parent 7587402 commit e6174f5

File tree

13 files changed

+78
-46
lines changed

13 files changed

+78
-46
lines changed

.github/workflows/publish.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Publish package to GitHub Packages
2+
on:
3+
release:
4+
types: [created]
5+
jobs:
6+
publish:
7+
runs-on: ubuntu-latest
8+
permissions:
9+
contents: read
10+
packages: write
11+
steps:
12+
- uses: actions/checkout@v5
13+
- uses: actions/setup-java@v4
14+
with:
15+
java-version: '21'
16+
distribution: 'temurin'
17+
- name: Publish package
18+
run: mvn --batch-mode deploy -Pjenkins -Ddependency.check.skip=true -DskipTests
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

assembly-plugin-boilerplate/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
2121
http://maven.apache.org/maven-v4_0_0.xsd">
2222
<modelVersion>4.0.0</modelVersion>
2323

24-
<groupId>io.confluent</groupId>
24+
<groupId>io.arenadata.confluent</groupId>
2525
<artifactId>assembly-plugin-boilerplate</artifactId>
2626
<packaging>pom</packaging>
2727
<version>7.9.1</version>

build-tools/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1919
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2020
<modelVersion>4.0.0</modelVersion>
21-
<groupId>io.confluent</groupId>
21+
<groupId>io.arenadata.confluent</groupId>
2222
<artifactId>build-tools</artifactId>
2323
<version>7.9.1</version>
2424
<name>Build Tools</name>

config/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<parent>
2424
<artifactId>common-parent</artifactId>
25-
<groupId>io.confluent</groupId>
25+
<groupId>io.arenadata.confluent</groupId>
2626
<version>7.9.1</version>
2727
</parent>
2828

@@ -32,7 +32,7 @@
3232

3333
<dependencies>
3434
<dependency>
35-
<groupId>io.confluent</groupId>
35+
<groupId>io.arenadata.confluent</groupId>
3636
<artifactId>common-utils</artifactId>
3737
<version>${io.confluent.common.version}</version>
3838
</dependency>

disk-usage-agent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
<parent>
2525
<artifactId>common-parent</artifactId>
26-
<groupId>io.confluent</groupId>
26+
<groupId>io.arenadata.confluent</groupId>
2727
<version>7.9.1</version>
2828
</parent>
2929

log4j-extensions/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
<parent>
2525
<artifactId>common-parent</artifactId>
26-
<groupId>io.confluent</groupId>
26+
<groupId>io.arenadata.confluent</groupId>
2727
<version>7.9.1</version>
2828
</parent>
2929

@@ -43,12 +43,12 @@
4343
<artifactId>logredactor</artifactId>
4444
</dependency>
4545
<dependency>
46-
<groupId>io.confluent</groupId>
46+
<groupId>io.arenadata.confluent</groupId>
4747
<artifactId>common-logging</artifactId>
4848
<version>${io.confluent.common.version}</version>
4949
</dependency>
5050
<dependency>
51-
<groupId>org.apache.kafka</groupId>
51+
<groupId>io.arenadata.kafka</groupId>
5252
<artifactId>connect-api</artifactId>
5353
<version>${kafka.version}</version>
5454
</dependency>

log4j2-extensions/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
<parent>
2525
<artifactId>common-parent</artifactId>
26-
<groupId>io.confluent</groupId>
26+
<groupId>io.arenadata.confluent</groupId>
2727
<version>7.9.1</version>
2828
</parent>
2929

@@ -40,17 +40,17 @@
4040
<version>2.17.1</version>
4141
</dependency>
4242
<dependency>
43-
<groupId>io.confluent</groupId>
43+
<groupId>io.arenadata.confluent</groupId>
4444
<artifactId>common-logging</artifactId>
4545
<version>${io.confluent.common.version}</version>
4646
</dependency>
4747
<dependency>
48-
<groupId>org.apache.kafka</groupId>
48+
<groupId>io.arenadata.kafka</groupId>
4949
<artifactId>connect-api</artifactId>
5050
<version>${kafka.version}</version>
5151
</dependency>
5252
<dependency>
53-
<groupId>org.apache.kafka</groupId>
53+
<groupId>io.arenadata.kafka</groupId>
5454
<artifactId>connect-json</artifactId>
5555
<version>${kafka.version}</version>
5656
</dependency>

logging/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
<parent>
2525
<artifactId>common-parent</artifactId>
26-
<groupId>io.confluent</groupId>
26+
<groupId>io.arenadata.confluent</groupId>
2727
<version>7.9.1</version>
2828
</parent>
2929

@@ -39,12 +39,12 @@
3939
<artifactId>slf4j-api</artifactId>
4040
</dependency>
4141
<dependency>
42-
<groupId>org.apache.kafka</groupId>
42+
<groupId>io.arenadata.kafka</groupId>
4343
<artifactId>connect-api</artifactId>
4444
<version>${kafka.version}</version>
4545
</dependency>
4646
<dependency>
47-
<groupId>org.apache.kafka</groupId>
47+
<groupId>io.arenadata.kafka</groupId>
4848
<artifactId>connect-json</artifactId>
4949
<version>${kafka.version}</version>
5050
</dependency>

metrics/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<parent>
2424
<artifactId>common-parent</artifactId>
25-
<groupId>io.confluent</groupId>
25+
<groupId>io.arenadata.confluent</groupId>
2626
<version>7.9.1</version>
2727
</parent>
2828

@@ -32,7 +32,7 @@
3232

3333
<dependencies>
3434
<dependency>
35-
<groupId>io.confluent</groupId>
35+
<groupId>io.arenadata.confluent</groupId>
3636
<artifactId>common-utils</artifactId>
3737
<version>${io.confluent.common.version}</version>
3838
</dependency>

package/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<modelVersion>4.0.0</modelVersion>
2222

2323
<parent>
24-
<groupId>io.confluent</groupId>
24+
<groupId>io.arenadata.confluent</groupId>
2525
<artifactId>common-parent</artifactId>
2626
<version>7.9.1</version>
2727
</parent>
@@ -33,22 +33,22 @@
3333
<!-- Dependencies are required only to ensure this module is built last. -->
3434
<dependencies>
3535
<dependency>
36-
<groupId>io.confluent</groupId>
36+
<groupId>io.arenadata.confluent</groupId>
3737
<artifactId>build-tools</artifactId>
3838
<version>${io.confluent.common.version}</version>
3939
</dependency>
4040
<dependency>
41-
<groupId>io.confluent</groupId>
41+
<groupId>io.arenadata.confluent</groupId>
4242
<artifactId>common-utils</artifactId>
4343
<version>${io.confluent.common.version}</version>
4444
</dependency>
4545
<dependency>
46-
<groupId>io.confluent</groupId>
46+
<groupId>io.arenadata.confluent</groupId>
4747
<artifactId>common-config</artifactId>
4848
<version>${io.confluent.common.version}</version>
4949
</dependency>
5050
<dependency>
51-
<groupId>io.confluent</groupId>
51+
<groupId>io.arenadata.confluent</groupId>
5252
<artifactId>common-metrics</artifactId>
5353
<version>${io.confluent.common.version}</version>
5454
</dependency>

0 commit comments

Comments
 (0)