Skip to content

Commit

Permalink
Merge pull request #62 from jGauravGupta/ECOSYS-112-14-FIX
Browse files Browse the repository at this point in the history
ECOSYS-112 Add release profile in payara-client-ee7 (Payara 4.x)
  • Loading branch information
jGauravGupta authored Feb 24, 2020
2 parents 8ccb128 + d34f8c4 commit e5d328a
Showing 1 changed file with 81 additions and 0 deletions.
81 changes: 81 additions & 0 deletions payara-client-ee7/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,66 @@
<version>1.5-SNAPSHOT</version>
<name>Payara EE 7 client libs</name>

<description>
Payara Container integrations for the Arquillian Project.
Based on the JBoss GlassFish container integrations.
</description>

<url>https://github.com/payara/Payara</url>

<scm>
<connection>scm:git:[email protected]:payara/ecosystem-arquillian-connectors.git</connection>
<url>scm:git:[email protected]:payara/ecosystem-arquillian-connectors.git</url>
<developerConnection>scm:git:[email protected]:payara/ecosystem-arquillian-connectors.git</developerConnection>
<tag>${project.version}</tag>
</scm>

<licenses>
<license>
<name>CDDL + GPLv2 with classpath exception</name>
<url>http://glassfish.java.net/nonav/public/CDDL+GPL.html</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>

<developers>
<developer>
<name>Payara Team</name>
<email>[email protected]</email>
<organization>Payara Foundation</organization>
<organizationUrl>http://www.payara.fish</organizationUrl>
</developer>
</developers>

<properties>
<version.jersey>2.25.1.payara-p7</version.jersey>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>

<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<pushChanges>false</pushChanges>
<localCheckout>true</localCheckout>
<releaseProfiles>release</releaseProfiles>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>

<!-- WebSocket client dependencies -->
Expand Down Expand Up @@ -122,4 +178,29 @@
</repository>
</repositories>

<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- Signing with GPG is a requirement for a release deployment to Maven central. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

0 comments on commit e5d328a

Please sign in to comment.