summaryrefslogtreecommitdiffstats
path: root/container-dependency-versions
diff options
context:
space:
mode:
authorArnstein Ressem <aressem@gmail.com>2023-07-28 11:56:06 +0200
committerGitHub <noreply@github.com>2023-07-28 11:56:06 +0200
commite389fbee6406b69beb3718a04953f44589aee205 (patch)
treefa4517246d731ecc9ffe95fe1d20c6de30664c57 /container-dependency-versions
parentb7195fc5a91b85daa2be5f648f6aafd1889f537a (diff)
Revert "Remove oss release workaround."
Diffstat (limited to 'container-dependency-versions')
-rw-r--r--container-dependency-versions/pom.xml52
1 files changed, 52 insertions, 0 deletions
diff --git a/container-dependency-versions/pom.xml b/container-dependency-versions/pom.xml
index 72af951d965..e2bdc987354 100644
--- a/container-dependency-versions/pom.xml
+++ b/container-dependency-versions/pom.xml
@@ -189,6 +189,58 @@
</plugins>
</build>
</profile>
+ <profile>
+ <id>ossrh-deploy-vespa</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <properties>
+ </properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-gpg-plugin</artifactId>
+ <version>${maven.gpg.plugin.version}</version>
+ <executions>
+ <execution>
+ <id>sign-artifacts</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ <configuration>
+ <gpgArguments>
+ <arg>--pinentry-mode</arg>
+ <arg>loopback</arg>
+ </gpgArguments>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.sonatype.plugins</groupId>
+ <artifactId>nexus-staging-maven-plugin</artifactId>
+ <version>${nexus.staging.maven.plugin.version}</version>
+ <extensions>true</extensions>
+ <configuration>
+ <serverId>ossrh</serverId>
+ <nexusUrl>https://oss.sonatype.org/</nexusUrl>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <distributionManagement>
+ <snapshotRepository>
+ <id>ossrh</id>
+ <url>${snapshotDeploymentRepository}</url>
+ </snapshotRepository>
+ <repository>
+ <id>ossrh</id>
+ <url>${releaseDeploymentRepository}</url>
+ </repository>
+ </distributionManagement>
+ </profile>
</profiles>
</project>