Author: thomas.heute(a)jboss.com
Date: 2010-12-06 05:09:01 -0500 (Mon, 06 Dec 2010)
New Revision: 5491
Modified:
epp/examples/branches/EPP_5_1_Branch/portlets/jsfhellouser/pom.xml
Log:
oups
Modified: epp/examples/branches/EPP_5_1_Branch/portlets/jsfhellouser/pom.xml
===================================================================
--- epp/examples/branches/EPP_5_1_Branch/portlets/jsfhellouser/pom.xml 2010-12-06 06:31:28
UTC (rev 5490)
+++ epp/examples/branches/EPP_5_1_Branch/portlets/jsfhellouser/pom.xml 2010-12-06 10:09:01
UTC (rev 5491)
@@ -3,17 +3,88 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.gatein.portal.examples.portlets</groupId>
- <artifactId>reactor</artifactId>
- <packaging>pom</packaging>
- <version>1.0.0-GA-SNAPSHOT</version>
- <name>EPP Portlets Examples</name>
+ <version>1.1.0-GA-SNAPSHOT</version>
+ <artifactId>gatein-jsf-hellouser</artifactId>
- <modules>
- <module>idmhelloworld</module>
- <module>jsfhellouser</module>
- <module>jsphellouser</module>
- <module>simplesthelloworld</module>
- <module>prpapi</module>
- </modules>
+ <packaging>war</packaging>
+ <name>EPP Portlets Examples - JSF Hello User Portlet</name>
+ <description />
+ <properties>
+ <portletBridge.home>${EPP_HOME}/portletbridge</portletBridge.home>
+ <portletBridge.version>2.1.0.CR1</portletBridge.version>
+ </properties>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-war-plugin</artifactId>
+ <version>2.1.1</version>
+ <configuration>
+ <webResources>
+ <resource>
+ <directory>${portletBridge.home}</directory>
+ <includes>
+
<include>portletbridge-api-${portletbridge.version}.jar</include>
+
<include>portletbridge-impl-${portletbridge.version}.jar</include>
+ </includes>
+ <targetPath>WEB-INF/lib</targetPath>
+ </resource>
+ </webResources>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+
+ <dependencies>
+ <dependency>
+ <groupId>javax.portlet</groupId>
+ <artifactId>portlet-api</artifactId>
+ <scope>provided</scope>
+ <version>2.0</version>
+ </dependency>
+
+ <!-- Portlet bridge -->
+ <dependency>
+ <groupId>org.jboss.portletbridge</groupId>
+ <artifactId>portletbridge-api</artifactId>
+ <version>${portletBridge.version}</version>
+ <scope>system</scope>
+
<systemPath>${portletBridge.home}/portletbridge-api-${portletBridge.version}.jar</systemPath>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.portletbridge</groupId>
+ <artifactId>portletbridge-impl</artifactId>
+ <version>${portletBridge.version}</version>
+ <scope>system</scope>
+
<systemPath>${portletBridge.home}/portletbridge-impl-${portletBridge.version}.jar</systemPath>
+ </dependency>
+
+ </dependencies>
+
+ <repositories>
+ <repository>
+ <id>JBoss repository</id>
+
<
url>https://repository.jboss.org/nexus/content/repositories/public/<...
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+ </repositories>
+
</project>