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 2010/05/07 23:36:16 UTC

svn commit: r942241 - in /mina/vysper/trunk/server/extensions: pom.xml xep0045-muc-inttest/ xep0045-muc-inttest/pom.xml xep0045-muc-inttest/src/ xep0045-muc-inttest/src/main/ xep0045-muc-inttest/src/main/test/ xep0045-muc/pom.xml

Author: ngn
Date: Fri May  7 21:36:15 2010
New Revision: 942241

URL: http://svn.apache.org/viewvc?rev=942241&view=rev
Log:
Adding module for MUC integration tests

Added:
    mina/vysper/trunk/server/extensions/xep0045-muc-inttest/
    mina/vysper/trunk/server/extensions/xep0045-muc-inttest/pom.xml
    mina/vysper/trunk/server/extensions/xep0045-muc-inttest/src/
    mina/vysper/trunk/server/extensions/xep0045-muc-inttest/src/main/
    mina/vysper/trunk/server/extensions/xep0045-muc-inttest/src/main/test/
Modified:
    mina/vysper/trunk/server/extensions/pom.xml
    mina/vysper/trunk/server/extensions/xep0045-muc/pom.xml

Modified: mina/vysper/trunk/server/extensions/pom.xml
URL: http://svn.apache.org/viewvc/mina/vysper/trunk/server/extensions/pom.xml?rev=942241&r1=942240&r2=942241&view=diff
==============================================================================
--- mina/vysper/trunk/server/extensions/pom.xml (original)
+++ mina/vysper/trunk/server/extensions/pom.xml Fri May  7 21:36:15 2010
@@ -34,4 +34,16 @@
     <module>xep0060-pubsub</module>
     <module>xep0045-muc</module>
   </modules>
+
+  <profiles>
+	<profile>
+      <id>inttest</id>
+      <modules>
+	    <module>xep0060-pubsub</module>
+	    <module>xep0045-muc</module>
+	    <module>xep0045-muc-inttest</module>
+      </modules>
+    </profile>
+  </profiles>
+
 </project>

Added: mina/vysper/trunk/server/extensions/xep0045-muc-inttest/pom.xml
URL: http://svn.apache.org/viewvc/mina/vysper/trunk/server/extensions/xep0045-muc-inttest/pom.xml?rev=942241&view=auto
==============================================================================
--- mina/vysper/trunk/server/extensions/xep0045-muc-inttest/pom.xml (added)
+++ mina/vysper/trunk/server/extensions/xep0045-muc-inttest/pom.xml Fri May  7 21:36:15 2010
@@ -0,0 +1,68 @@
+<?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" 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">
+  <parent>
+    <artifactId>vysper-server</artifactId>
+    <groupId>org.apache.vysper</groupId>
+    <version>0.6-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.vysper.extensions</groupId>
+  <artifactId>xep0045-muc-inttest</artifactId>
+  <name>Apache Vysper XEP-0045 Integration tests</name>
+  <version>0.6-SNAPSHOT</version>
+  
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.vysper.extensions</groupId>
+      <artifactId>xep0045-muc</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+	  <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+	  <scope>test</scope>
+    </dependency>
+
+    <!-- Test dependencies -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>jivesoftware</groupId>
+      <artifactId>smack</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>jivesoftware</groupId>
+      <artifactId>smackx</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>

Modified: mina/vysper/trunk/server/extensions/xep0045-muc/pom.xml
URL: http://svn.apache.org/viewvc/mina/vysper/trunk/server/extensions/xep0045-muc/pom.xml?rev=942241&r1=942240&r2=942241&view=diff
==============================================================================
--- mina/vysper/trunk/server/extensions/xep0045-muc/pom.xml (original)
+++ mina/vysper/trunk/server/extensions/xep0045-muc/pom.xml Fri May  7 21:36:15 2010
@@ -56,7 +56,7 @@
     <!-- Test dependencies -->
     <dependency>
       <groupId>org.apache.vysper</groupId>
-      <artifactId>vysper-core</artifactId>
+      <artifactId>vysper-core-inttest</artifactId>
       <version>${pom.version}</version>
       <type>test-jar</type>
       <scope>test</scope>