[seam-commits] Seam SVN: r11965 - in modules/xml/trunk: src and 3 other directories.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Fri Jan 15 14:05:57 EST 2010
Author: pete.muir at jboss.org
Date: 2010-01-15 14:05:57 -0500 (Fri, 15 Jan 2010)
New Revision: 11965
Added:
modules/xml/trunk/pom.xml
modules/xml/trunk/readme.txt
modules/xml/trunk/src/
modules/xml/trunk/src/main/
modules/xml/trunk/src/main/resources/
modules/xml/trunk/src/main/resources/META-INF/
modules/xml/trunk/src/main/resources/META-INF/beans.xml
Log:
import module structure
Added: modules/xml/trunk/pom.xml
===================================================================
--- modules/xml/trunk/pom.xml (rev 0)
+++ modules/xml/trunk/pom.xml 2010-01-15 19:05:57 UTC (rev 11965)
@@ -0,0 +1,52 @@
+<?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>
+
+ <parent>
+ <groupId>org.jboss.seam</groupId>
+ <artifactId>seam-parent</artifactId>
+ <version>3.0.0-SNAPSHOT</version>
+ </parent>
+
+ <groupId>org.jboss.seam</groupId>
+ <artifactId>seam-xml</artifactId>
+ <name>xml</name>
+ <version>1.0-SNAPSHOT</version>
+
+ <properties>
+ <seam.version>3.0.0-SNAPSHOT</seam.version>
+ </properties>
+
+ <!-- Snapshots repo to get parent -->
+ <repositories>
+ <repository>
+ <id>oss.sonatype.org/jboss-snapshots</id>
+ <name>JBoss (Nexus) Snapshots Repository</name>
+ <url>http://oss.sonatype.org/content/repositories/jboss-snapshots</url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </snapshots>
+ </repository>
+ </repositories>
+
+ <dependencies>
+ <!-- CDI (JSR-299) -->
+ <dependency>
+ <groupId>javax.enterprise</groupId>
+ <artifactId>cdi-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/seam/modules/xml/trunk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/seam/modules/xml/trunk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Seam/modules/xml/trunk</url>
+ </scm>
+
+</project>
Added: modules/xml/trunk/readme.txt
===================================================================
--- modules/xml/trunk/readme.txt (rev 0)
+++ modules/xml/trunk/readme.txt 2010-01-15 19:05:57 UTC (rev 11965)
@@ -0,0 +1,4 @@
+Seam xml
+=============
+
+TODO
Added: modules/xml/trunk/src/main/resources/META-INF/beans.xml
===================================================================
--- modules/xml/trunk/src/main/resources/META-INF/beans.xml (rev 0)
+++ modules/xml/trunk/src/main/resources/META-INF/beans.xml 2010-01-15 19:05:57 UTC (rev 11965)
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ The contents of this file is permitted to be empty.
+ The schema definition is provided for your convenience.
+-->
+<beans xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="
+ http://java.sun.com/xml/ns/javaee
+ http://java.sun.com/xml/ns/javaee/beans_1_0.xsd">
+</beans>
More information about the seam-commits
mailing list