Skip to content

Commit 7f4577b

Browse files
authored
chore: auto generate (#53)
1 parent 80395b9 commit 7f4577b

6 files changed

Lines changed: 117 additions & 27 deletions

File tree

packages/kafka-instance-sdk/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Add this dependency to your project's POM:
3838

3939
```xml
4040
<dependency>
41-
<groupId>cloud.redhat.com</groupId>
41+
<groupId>com.redhat.cloud</groupId>
4242
<artifactId>kafka-instance-sdk</artifactId>
4343
<version>0.1.0</version>
4444
<scope>compile</scope>
@@ -50,7 +50,7 @@ Add this dependency to your project's POM:
5050
Add this dependency to your project's build file:
5151

5252
```groovy
53-
compile "cloud.redhat.com:kafka-instance-sdk:0.1.0"
53+
compile "com.redhat.cloud:kafka-instance-sdk:0.1.0"
5454
```
5555

5656
### Others

packages/kafka-instance-sdk/pom.xml

Lines changed: 37 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
<groupId>cloud.redhat.com</groupId>
4+
<groupId>com.redhat.cloud</groupId>
55
<artifactId>kafka-instance-sdk</artifactId>
66
<packaging>jar</packaging>
77
<name>kafka-instance-sdk</name>
@@ -12,12 +12,11 @@
1212
<url>https://github.com/openapitools/openapi-generator</url>
1313
</scm>
1414

15-
<distributionManagement>
16-
<repository>
17-
<id>github</id>
18-
<name>GitHub OWNER Apache Maven Packages</name>
19-
<url>https://maven.pkg.github.com/redhat-developer/app-services-sdk-java</url>
20-
</repository>
15+
<distributionManagement>
16+
<snapshotRepository>
17+
<id>ossrh</id>
18+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
19+
</snapshotRepository>
2120
</distributionManagement>
2221

2322

@@ -175,6 +174,37 @@
175174
</execution>
176175
</executions>
177176
</plugin>
177+
<plugin>
178+
<groupId>org.sonatype.plugins</groupId>
179+
<artifactId>nexus-staging-maven-plugin</artifactId>
180+
<version>1.6.7</version>
181+
<extensions>true</extensions>
182+
<configuration>
183+
<serverId>ossrh</serverId>
184+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
185+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
186+
</configuration>
187+
</plugin>
188+
<plugin>
189+
<groupId>org.apache.maven.plugins</groupId>
190+
<artifactId>maven-gpg-plugin</artifactId>
191+
<version>1.6</version>
192+
<configuration>
193+
<gpgArguments>
194+
<arg>--pinentry-mode</arg>
195+
<arg>loopback</arg>
196+
</gpgArguments>
197+
</configuration>
198+
<executions>
199+
<execution>
200+
<id>sign-artifacts</id>
201+
<phase>verify</phase>
202+
<goals>
203+
<goal>sign</goal>
204+
</goals>
205+
</execution>
206+
</executions>
207+
</plugin>
178208
</plugins>
179209
</build>
180210
<dependencies>

packages/kafka-management-sdk/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Add this dependency to your project's POM:
3838

3939
```xml
4040
<dependency>
41-
<groupId>cloud.redhat.com</groupId>
41+
<groupId>com.redhat.cloud</groupId>
4242
<artifactId>kafka-management-sdk</artifactId>
4343
<version>1.1.1</version>
4444
<scope>compile</scope>
@@ -50,7 +50,7 @@ Add this dependency to your project's POM:
5050
Add this dependency to your project's build file:
5151

5252
```groovy
53-
compile "cloud.redhat.com:kafka-management-sdk:1.1.1"
53+
compile "com.redhat.cloud:kafka-management-sdk:1.1.1"
5454
```
5555

5656
### Others

packages/kafka-management-sdk/pom.xml

Lines changed: 37 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
<groupId>cloud.redhat.com</groupId>
4+
<groupId>com.redhat.cloud</groupId>
55
<artifactId>kafka-management-sdk</artifactId>
66
<packaging>jar</packaging>
77
<name>kafka-management-sdk</name>
@@ -12,12 +12,11 @@
1212
<url>https://github.com/openapitools/openapi-generator</url>
1313
</scm>
1414

15-
<distributionManagement>
16-
<repository>
17-
<id>github</id>
18-
<name>GitHub OWNER Apache Maven Packages</name>
19-
<url>https://maven.pkg.github.com/redhat-developer/app-services-sdk-java</url>
20-
</repository>
15+
<distributionManagement>
16+
<snapshotRepository>
17+
<id>ossrh</id>
18+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
19+
</snapshotRepository>
2120
</distributionManagement>
2221

2322

@@ -175,6 +174,37 @@
175174
</execution>
176175
</executions>
177176
</plugin>
177+
<plugin>
178+
<groupId>org.sonatype.plugins</groupId>
179+
<artifactId>nexus-staging-maven-plugin</artifactId>
180+
<version>1.6.7</version>
181+
<extensions>true</extensions>
182+
<configuration>
183+
<serverId>ossrh</serverId>
184+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
185+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
186+
</configuration>
187+
</plugin>
188+
<plugin>
189+
<groupId>org.apache.maven.plugins</groupId>
190+
<artifactId>maven-gpg-plugin</artifactId>
191+
<version>1.6</version>
192+
<configuration>
193+
<gpgArguments>
194+
<arg>--pinentry-mode</arg>
195+
<arg>loopback</arg>
196+
</gpgArguments>
197+
</configuration>
198+
<executions>
199+
<execution>
200+
<id>sign-artifacts</id>
201+
<phase>verify</phase>
202+
<goals>
203+
<goal>sign</goal>
204+
</goals>
205+
</execution>
206+
</executions>
207+
</plugin>
178208
</plugins>
179209
</build>
180210
<dependencies>

packages/registry-management-sdk/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Add this dependency to your project's POM:
3939

4040
```xml
4141
<dependency>
42-
<groupId>cloud.redhat.com</groupId>
42+
<groupId>com.redhat.cloud</groupId>
4343
<artifactId>registry-management-sdk</artifactId>
4444
<version>0.0.5</version>
4545
<scope>compile</scope>
@@ -51,7 +51,7 @@ Add this dependency to your project's POM:
5151
Add this dependency to your project's build file:
5252

5353
```groovy
54-
compile "cloud.redhat.com:registry-management-sdk:0.0.5"
54+
compile "com.redhat.cloud:registry-management-sdk:0.0.5"
5555
```
5656

5757
### Others

packages/registry-management-sdk/pom.xml

Lines changed: 37 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
<groupId>cloud.redhat.com</groupId>
4+
<groupId>com.redhat.cloud</groupId>
55
<artifactId>registry-management-sdk</artifactId>
66
<packaging>jar</packaging>
77
<name>registry-management-sdk</name>
@@ -12,12 +12,11 @@
1212
<url>https://github.com/openapitools/openapi-generator</url>
1313
</scm>
1414

15-
<distributionManagement>
16-
<repository>
17-
<id>github</id>
18-
<name>GitHub OWNER Apache Maven Packages</name>
19-
<url>https://maven.pkg.github.com/redhat-developer/app-services-sdk-java</url>
20-
</repository>
15+
<distributionManagement>
16+
<snapshotRepository>
17+
<id>ossrh</id>
18+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
19+
</snapshotRepository>
2120
</distributionManagement>
2221

2322

@@ -175,6 +174,37 @@
175174
</execution>
176175
</executions>
177176
</plugin>
177+
<plugin>
178+
<groupId>org.sonatype.plugins</groupId>
179+
<artifactId>nexus-staging-maven-plugin</artifactId>
180+
<version>1.6.7</version>
181+
<extensions>true</extensions>
182+
<configuration>
183+
<serverId>ossrh</serverId>
184+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
185+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
186+
</configuration>
187+
</plugin>
188+
<plugin>
189+
<groupId>org.apache.maven.plugins</groupId>
190+
<artifactId>maven-gpg-plugin</artifactId>
191+
<version>1.6</version>
192+
<configuration>
193+
<gpgArguments>
194+
<arg>--pinentry-mode</arg>
195+
<arg>loopback</arg>
196+
</gpgArguments>
197+
</configuration>
198+
<executions>
199+
<execution>
200+
<id>sign-artifacts</id>
201+
<phase>verify</phase>
202+
<goals>
203+
<goal>sign</goal>
204+
</goals>
205+
</execution>
206+
</executions>
207+
</plugin>
178208
</plugins>
179209
</build>
180210
<dependencies>

0 commit comments

Comments
 (0)