Author: van.halbert
Date: 2012-06-01 22:40:52 -0400 (Fri, 01 Jun 2012)
New Revision: 4159
Modified:
branches/7.7.x/connectors/connector-infinispan/pom.xml
Log:
Updated to also deploy the ear file
Modified: branches/7.7.x/connectors/connector-infinispan/pom.xml
===================================================================
--- branches/7.7.x/connectors/connector-infinispan/pom.xml 2012-06-01 18:12:48 UTC (rev
4158)
+++ branches/7.7.x/connectors/connector-infinispan/pom.xml 2012-06-02 02:40:52 UTC (rev
4159)
@@ -262,7 +262,37 @@
</configuration>
</execution>
</executions>
- </plugin>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>deploy-ear</id>
+ <phase>deploy</phase>
+ <goals>
+ <goal>deploy-file</goal>
+ </goals>
+ <configuration>
+ <url>file:///tmp/repo</url>
+ <repositoryId>Internal testing
release</repositoryId>
+ <packaging>ear</packaging>
+ <artifactId>${project.artifactId}</artifactId>
+ <groupId>${project.groupId}</groupId>
+ <version>${project.version}</version>
+
<file>${project.build.directory}/${project.artifactId}-${project.version}.ear</file>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
</project>
+
+<distributionManagement>
+ <repository>
+ <id>Internal testing release</id>
+ <name>Deployment of ear</name>
+ <url>${maven.repo.local}</url>
+ </repository>
+</distributionManagement>