|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
5 | 5 | <modelVersion>4.0.0</modelVersion>
|
6 | 6 |
|
7 |
| - <groupId>io.strimzi.kafka.access</groupId> |
| 7 | + <groupId>io.strimzi.access-operator</groupId> |
8 | 8 | <artifactId>kafka-access-operator</artifactId>
|
9 | 9 | <version>0.2.0-SNAPSHOT</version>
|
10 | 10 | <packaging>pom</packaging>
|
|
118 | 118 | <maven.shade.version>3.1.0</maven.shade.version>
|
119 | 119 | <maven.dependency.version>3.3.0</maven.dependency.version>
|
120 | 120 | <maven.assembly.version>3.3.0</maven.assembly.version>
|
| 121 | + <maven.gpg.version>3.0.1</maven.gpg.version> |
| 122 | + <sonatype.nexus.staging>1.7.0</sonatype.nexus.staging> |
121 | 123 |
|
122 | 124 | <!-- Runtime dependencies -->
|
123 | 125 | <javaoperatorsdk.version>4.4.2</javaoperatorsdk.version>
|
|
283 | 285 | <scope>test</scope>
|
284 | 286 | </dependency>
|
285 | 287 | <dependency>
|
286 |
| - <groupId>io.strimzi.kafka.access</groupId> |
| 288 | + <groupId>io.strimzi.access-operator</groupId> |
287 | 289 | <artifactId>api</artifactId>
|
288 | 290 | <version>${project.version}</version>
|
289 | 291 | </dependency>
|
|
434 | 436 | </plugins>
|
435 | 437 | </build>
|
436 | 438 |
|
| 439 | + <profiles> |
| 440 | + <profile> |
| 441 | + <id>ossrh</id> |
| 442 | + <activation> |
| 443 | + <activeByDefault>false</activeByDefault> |
| 444 | + </activation> |
| 445 | + <properties> |
| 446 | + <!--suppress UnresolvedMavenProperty --> |
| 447 | + <gpg.executable>${env.GPG_EXECUTABLE}</gpg.executable> |
| 448 | + <!--suppress UnresolvedMavenProperty --> |
| 449 | + <gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase> |
| 450 | + </properties> |
| 451 | + <build> |
| 452 | + <plugins> |
| 453 | + <plugin> |
| 454 | + <groupId>org.apache.maven.plugins</groupId> |
| 455 | + <artifactId>maven-gpg-plugin</artifactId> |
| 456 | + <version>${maven.gpg.version}</version> |
| 457 | + <executions> |
| 458 | + <execution> |
| 459 | + <id>sign-artifacts</id> |
| 460 | + <phase>verify</phase> |
| 461 | + <goals> |
| 462 | + <goal>sign</goal> |
| 463 | + </goals> |
| 464 | + <configuration> |
| 465 | + <gpgArguments> |
| 466 | + <arg>--batch</arg> |
| 467 | + <arg>--pinentry-mode</arg> |
| 468 | + <arg>loopback</arg> |
| 469 | + </gpgArguments> |
| 470 | + </configuration> |
| 471 | + </execution> |
| 472 | + </executions> |
| 473 | + </plugin> |
| 474 | + <plugin> |
| 475 | + <groupId>org.sonatype.plugins</groupId> |
| 476 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 477 | + <version>${sonatype.nexus.staging}</version> |
| 478 | + <extensions>true</extensions> |
| 479 | + <configuration> |
| 480 | + <serverId>ossrh</serverId> |
| 481 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 482 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 483 | + </configuration> |
| 484 | + </plugin> |
| 485 | + </plugins> |
| 486 | + </build> |
| 487 | + </profile> |
| 488 | + </profiles> |
437 | 489 | </project>
|
0 commit comments