[ajax4jsf-svn-commits] JBoss Ajax4JSF SVN: r128 - in trunk/samples: portal-echo and 1 other directory.

ajax4jsf-svn-commits at lists.jboss.org ajax4jsf-svn-commits at lists.jboss.org
Wed Apr 25 20:53:04 EDT 2007


Author: SergeySmirnov
Date: 2007-04-25 20:53:04 -0400 (Wed, 25 Apr 2007)
New Revision: 128

Added:
   trunk/samples/portal-echo/
   trunk/samples/portal-echo/pom.xml
Log:
Portal Project. Echo


Property changes on: trunk/samples/portal-echo
___________________________________________________________________
Name: svn:ignore
   + .project
.classpath
.settings
target


Added: trunk/samples/portal-echo/pom.xml
===================================================================
--- trunk/samples/portal-echo/pom.xml	                        (rev 0)
+++ trunk/samples/portal-echo/pom.xml	2007-04-26 00:53:04 UTC (rev 128)
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>
+  <groupId>portal-echo</groupId>
+  <artifactId>portal-echo</artifactId>
+  <packaging>war</packaging>
+  <version>0.0.1</version>
+  <description>Ajax JSF sample portlet</description>
+      <build>
+        <defaultGoal>package</defaultGoal>
+	<finalName>portal-echo</finalName>
+        <plugins>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>jboss-maven-plugin</artifactId>
+                <configuration>
+                    <jbossHome>${env.JBOSS_HOME}</jbossHome>
+                    <hostName>${jboss_host}</hostName>
+                    <port>8080</port>                    
+                </configuration>
+            </plugin>
+            </plugins>
+       </build>
+  <dependencies>
+    <dependency>
+      <groupId>javax.portlet</groupId>
+      <artifactId>portlet-api</artifactId>
+      <version>1.0</version>
+	  <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>javax.faces</groupId>
+      <artifactId>jsf-api</artifactId>
+      <version>1.2_04</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>javax.faces</groupId>
+      <artifactId>jsf-impl</artifactId>
+      <version>1.2_04</version>
+	  <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.ajax4jsf</groupId>
+      <artifactId>a4j-portlet</artifactId>
+      <version>1.1.1-SNAPSHOT</version>
+	<exclusions>
+		<exclusion>
+			<groupId>javax.faces</groupId>
+			<artifactId>jsf-api</artifactId>
+		</exclusion>
+		<exclusion>
+			<groupId>javax.faces</groupId>
+			<artifactId>jsf-impl</artifactId>
+		</exclusion>
+	</exclusions>
+    </dependency>
+		<dependency>
+			<groupId>javax.faces</groupId>
+			<artifactId>jsf-api</artifactId>
+			<version>1.2_04</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>javax.faces</groupId>
+			<artifactId>jsf-impl</artifactId>
+			<version>1.2_04</version>
+			<scope>provided</scope>
+		</dependency>
+  </dependencies>
+</project>
+




More information about the ajax4jsf-svn-commits mailing list