Author: thomas.heute(a)jboss.com
Date: 2010-12-03 07:42:57 -0500 (Fri, 03 Dec 2010)
New Revision: 5472
Added:
epp/examples/branches/EPP_5_1_Branch/portlets/jsfhellouser/README.txt
Modified:
epp/examples/branches/EPP_5_1_Branch/portlets/jsfhellouser/pom.xml
Log:
Using EPP binaries
Added: epp/examples/branches/EPP_5_1_Branch/portlets/jsfhellouser/README.txt
===================================================================
--- epp/examples/branches/EPP_5_1_Branch/portlets/jsfhellouser/README.txt
(rev 0)
+++ epp/examples/branches/EPP_5_1_Branch/portlets/jsfhellouser/README.txt 2010-12-03
12:42:57 UTC (rev 5472)
@@ -0,0 +1,13 @@
+===========
+JSF example
+===========
+
+To compile and package the example use:
+mvn -DEPP_HOME=/full/path/to/EPP/installation clean install
+
+If you forget to set EPP_HOME the following error message will be shown by Maven:
+ [0] For dependency Dependency {groupId=org.jboss.portletbridge,
artifactId=portletbridge-api, version=epp, type=jar}: system-scoped dependency must
specify an absolute path systemPath.
+ [1] For dependency Dependency {groupId=org.jboss.portletbridge,
artifactId=portletbridge-impl, version=epp, type=jar}: system-scoped dependency must
specify an absolute path systemPath.
+
+
+
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-03 12:17:45
UTC (rev 5471)
+++ epp/examples/branches/EPP_5_1_Branch/portlets/jsfhellouser/pom.xml 2010-12-03 12:42:57
UTC (rev 5472)
@@ -3,61 +3,17 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.gatein.portal.examples.portlets</groupId>
- <version>1.0.1-GA-SNAPSHOT</version>
- <artifactId>gatein-jsf-hellouser</artifactId>
+ <artifactId>reactor</artifactId>
+ <packaging>pom</packaging>
+ <version>1.0.0-GA-SNAPSHOT</version>
+ <name>EPP Portlets Examples</name>
- <packaging>war</packaging>
- <name>EPP Portlets Examples - JSF Hello User Portlet</name>
- <description />
+ <modules>
+ <module>idmhelloworld</module>
+ <module>jsfhellouser</module>
+ <module>jsphellouser</module>
+ <module>simplesthelloworld</module>
+ <module>prpapi</module>
+ </modules>
- <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>
- </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>2.0.0.FINAL</version>
- </dependency>
-
- <dependency>
- <groupId>org.jboss.portletbridge</groupId>
- <artifactId>portletbridge-impl</artifactId>
- <version>2.0.0.FINAL</version>
- </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>