You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by ng...@apache.org on 2009/11/16 07:33:28 UTC

svn commit: r880616 - in /mina/sandbox/vysper/trunk: nbxml/ nbxml/pom.xml nbxml/src/ nbxml/src/main/ nbxml/src/main/java/ pom.xml server/core/pom.xml

Author: ngn
Date: Mon Nov 16 06:33:26 2009
New Revision: 880616

URL: http://svn.apache.org/viewvc?rev=880616&view=rev
Log:
Adding stub project for non-blocking XML parser module

Added:
    mina/sandbox/vysper/trunk/nbxml/
    mina/sandbox/vysper/trunk/nbxml/pom.xml
    mina/sandbox/vysper/trunk/nbxml/src/
    mina/sandbox/vysper/trunk/nbxml/src/main/
    mina/sandbox/vysper/trunk/nbxml/src/main/java/
Modified:
    mina/sandbox/vysper/trunk/pom.xml
    mina/sandbox/vysper/trunk/server/core/pom.xml

Added: mina/sandbox/vysper/trunk/nbxml/pom.xml
URL: http://svn.apache.org/viewvc/mina/sandbox/vysper/trunk/nbxml/pom.xml?rev=880616&view=auto
==============================================================================
--- mina/sandbox/vysper/trunk/nbxml/pom.xml (added)
+++ mina/sandbox/vysper/trunk/nbxml/pom.xml Mon Nov 16 06:33:26 2009
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements. See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to you under the Apache License, Version
+  2.0 (the "License"); you may not use this file except in compliance
+  with the License. You may obtain a copy of the License at
+  
+  http://www.apache.org/licenses/LICENSE-2.0 
+  
+  Unless required by applicable law or agreed to in writing, software 
+  distributed under the License is distributed on an "AS IS" BASIS, 
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
+  See the License for the specific language governing permissions and 
+  limitations under the License.
+-->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0">
+  <parent>
+    <artifactId>vysper-parent</artifactId>
+    <groupId>org.apache.vysper</groupId>
+    <version>1.0.0-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.vysper</groupId>
+  <artifactId>nbxml</artifactId>
+  <name>Apache Vysper Non-blocking XML parser</name>
+  <version>1.0.0-SNAPSHOT</version>
+</project>

Modified: mina/sandbox/vysper/trunk/pom.xml
URL: http://svn.apache.org/viewvc/mina/sandbox/vysper/trunk/pom.xml?rev=880616&r1=880615&r2=880616&view=diff
==============================================================================
--- mina/sandbox/vysper/trunk/pom.xml (original)
+++ mina/sandbox/vysper/trunk/pom.xml Mon Nov 16 06:33:26 2009
@@ -209,6 +209,13 @@
         <version>${pom.version}</version>
       </dependency>
 
+      <!-- Spec compliance -->
+      <dependency>
+        <groupId>org.apache.vysper</groupId>
+        <artifactId>nbxml</artifactId>
+        <version>${pom.version}</version>
+      </dependency>
+
       <!-- Test dependencies -->
       <dependency>
         <groupId>junit</groupId>
@@ -360,8 +367,9 @@
   </profiles>
 
   <modules>
-    <module>server</module>
     <module>speccompliance</module>
+    <module>nbxml</module>
+    <module>server</module>
   </modules>
 
   <properties>

Modified: mina/sandbox/vysper/trunk/server/core/pom.xml
URL: http://svn.apache.org/viewvc/mina/sandbox/vysper/trunk/server/core/pom.xml?rev=880616&r1=880615&r2=880616&view=diff
==============================================================================
--- mina/sandbox/vysper/trunk/server/core/pom.xml (original)
+++ mina/sandbox/vysper/trunk/server/core/pom.xml Mon Nov 16 06:33:26 2009
@@ -31,6 +31,11 @@
   
   <dependencies>
     <dependency>
+      <groupId>org.apache.vysper</groupId>
+      <artifactId>nbxml</artifactId>
+    </dependency>
+
+    <dependency>
       <groupId>org.springframework</groupId>
       <artifactId>spring</artifactId>
       <optional>true</optional>