Author: hfnukal
Date: 2011-11-02 16:24:18 -0400 (Wed, 02 Nov 2011)
New Revision: 7943
Added:
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/pom.xml
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/src/
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/src/assemble.xml
Modified:
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/pom.xml
Log:
JBEPP-1333 Include gatein-management CLI in packaging
Added:
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/pom.xml
(rev 0)
+++
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/pom.xml 2011-11-02
20:24:18 UTC (rev 7943)
@@ -0,0 +1,52 @@
+
+<project
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.exoplatform.portal</groupId>
+ <artifactId>distribution.parent</artifactId>
+ <version>5.2.0.ER06-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.exoplatform.portal.distribution.root</groupId>
+ <artifactId>gatein-management</artifactId>
+ <packaging>pom</packaging>
+ <name>Distribution portletbridge</name>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.gatein.management</groupId>
+ <artifactId>gatein-management-cli</artifactId>
+ <version>${org.gatein.mgmt.version}</version>
+ <type>war</type>
+ </dependency>
+ </dependencies>
+
+ <build>
+
+ <plugins>
+
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>bin</id>
+ <phase>compile</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ <configuration>
+ <appendAssemblyId>false</appendAssemblyId>
+ <descriptors>
+ <descriptor>src/assemble.xml</descriptor>
+ </descriptors>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ </plugins>
+ </build>
+
+</project>
Added:
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/src/assemble.xml
===================================================================
---
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/src/assemble.xml
(rev 0)
+++
epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/gatein-management/src/assemble.xml 2011-11-02
20:24:18 UTC (rev 7943)
@@ -0,0 +1,20 @@
+
+<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembl...
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-p...
http://maven.apache.org/xsd/assembly-1.1.2.xsd">
+ <id>bin</id>
+ <formats>
+ <format>zip</format>
+ </formats>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <dependencySets>
+ <dependencySet>
+ <includes>
+ <include>*:*:war</include>
+ </includes>
+ <outputDirectory></outputDirectory>
+ <unpack>false</unpack>
+
<outputFileNameMapping>${artifact.artifactId}-${artifact.version}.${artifact.extension}</outputFileNameMapping>
+ </dependencySet>
+ </dependencySets>
+</assembly>
Modified: epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/pom.xml
===================================================================
--- epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/pom.xml 2011-11-02 18:30:54
UTC (rev 7942)
+++ epp/portal/branches/EPP_5_2_Branch/distribution/jboss-epp/pom.xml 2011-11-02 20:24:18
UTC (rev 7943)
@@ -18,6 +18,7 @@
<module>serverAddon</module>
<module>portletbridge</module>
<module>examples</module>
+ <module>gatein-management</module>
</modules>
<dependencies>
@@ -27,14 +28,21 @@
<version>${project.version}</version>
<type>zip</type>
</dependency>
-
+
<dependency>
+ <groupId>org.exoplatform.portal.distribution.root</groupId>
+ <artifactId>gatein-management</artifactId>
+ <version>${project.version}</version>
+ <type>zip</type>
+ </dependency>
+
+ <dependency>
<groupId>org.gatein.sso</groupId>
<artifactId>sso-packaging</artifactId>
<version>${sso.version}</version>
<type>zip</type>
</dependency>
-
+
<dependency>
<groupId>org.exoplatform.portal.distribution.deploy</groupId>
<artifactId>serverAddon</artifactId>