|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | | - <groupId>cloud.redhat.com</groupId> |
| 4 | + <groupId>com.redhat.cloud</groupId> |
5 | 5 | <artifactId>registry-management-sdk</artifactId> |
6 | 6 | <packaging>jar</packaging> |
7 | 7 | <name>registry-management-sdk</name> |
|
12 | 12 | <url>https://github.com/openapitools/openapi-generator</url> |
13 | 13 | </scm> |
14 | 14 |
|
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> |
21 | 20 | </distributionManagement> |
22 | 21 |
|
23 | 22 |
|
|
175 | 174 | </execution> |
176 | 175 | </executions> |
177 | 176 | </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> |
178 | 208 | </plugins> |
179 | 209 | </build> |
180 | 210 | <dependencies> |
|
0 commit comments