-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from jGauravGupta/ECOSYS-112-14-FIX
ECOSYS-112 Add release profile in payara-client-ee7 (Payara 4.x)
- Loading branch information
Showing
1 changed file
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 --> | ||
|
@@ -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> |