Skip to content

Commit

Permalink
HPCC4J-548 Fix parent pom from upmerge issue for Jfrog deployment
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Gardner <[email protected]>
  • Loading branch information
Michael-Gardner committed Mar 7, 2024
1 parent 3fd6a11 commit e5d6cfb
Showing 1 changed file with 75 additions and 0 deletions.
75 changes: 75 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,81 @@
</plugins>
</build>
</profile>
<profile>
<id>jfrog-artifactory</id>
<properties>
<maven.gpg.skip>false</maven.gpg.skip>
<groups>org.hpccsystems.commons.annotations.BaseTests</groups>
</properties>
<!-- Needed for access to jfrog servers given github stored secrets -->
<distributionManagement>
<repository>
<id>jfrog</id>
<url>${env.JFROG_URL}/artifactory/${env.JFROG_REPOSITORY}</url>
</repository>
<snapshotRepository>
<id>jfrog-snapshot</id>
<url>${env.JFROG_URL}/artifactory/${env.JFROG_SNAPSHOT_REPOSITORY}</url>
</snapshotRepository>
</distributionManagement>
<repositories>
<repository>
<id>jfrog</id>
<name>hpccpl-maven-virtual</name>
<snapshots>
<enabled>false</enabled>
</snapshots>
<url>${env.JFROG_URL}/artifactory/${env.JFROG_REPOSITORY}</url>
</repository>
<repository>
<id>snapshots</id>
<name>hccpl-maven-snapshot-virtual</name>
<snapshots>
<enabled>true</enabled>
</snapshots>
<url>${env.JFROG_URL}/artifactory/${env.JFROG_SNAPSHOT_REPOSITORY}</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.version}</version>
<configuration>
<excludePackageNames>${javadoc.excludePackageNames}</excludePackageNames>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven.source.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven.gpg.version}</version>
<configuration>
<useAgent>true</useAgent>
<gpgArguments>
<arg>--batch</arg>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
<skip>${maven.gpg.skip}</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.version}</version>
<configuration>
<argLine>${argLine}</argLine>
<groups>${groups}</groups>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<developers>
Expand Down

0 comments on commit e5d6cfb

Please sign in to comment.