Author: lincolnthree
Date: 2010-04-05 13:56:02 -0400 (Mon, 05 Apr 2010)
New Revision: 12383
Added:
modules/faces/trunk/core/build/
modules/faces/trunk/core/build/classes/
modules/faces/trunk/pom.xml
Modified:
modules/faces/trunk/core/
Log:
svn:ignores
Property changes on: modules/faces/trunk/core
___________________________________________________________________
Name: svn:ignore
+ .settings
target
.classpath
.project
Added: modules/faces/trunk/pom.xml
===================================================================
--- modules/faces/trunk/pom.xml (rev 0)
+++ modules/faces/trunk/pom.xml 2010-04-05 17:56:02 UTC (rev 12383)
@@ -0,0 +1,49 @@
+<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/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <artifactId>seam-parent</artifactId>
+ <groupId>org.jboss.seam</groupId>
+ <version>3.0.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>seam-faces-parent</artifactId>
+ <groupId>org.jboss.seam.faces</groupId>
+ <version>3.0.0-SNAPSHOT</version>
+
+ <packaging>pom</packaging>
+ <name>Seam Faces Module</name>
+
+ <description>
+ The Parent for Seam Faces Modules
+ </description>
+
+ <url>http://www.seamframework.org</url>
+
+ <modules>
+ <module>core</module>
+ </modules>
+
+ <scm>
+ <
connection>scm:svn:http://anonsvn.jboss.org/repos/seam/modules/faces/t...
</connection>
+ <
developerConnection>scm:svn:https://svn.jboss.org/repos/seam/modules/f...
</developerConnection>
+ <
url>http://fisheye.jboss.org/browse/Seam/modules/faces/trunk</url>
+ </scm>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0.2</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
+