You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@synapse.apache.org by ve...@apache.org on 2008/08/02 20:18:26 UTC

svn commit: r682032 - in /synapse/trunk/java: modules/transports/pom.xml pom.xml

Author: veithen
Date: Sat Aug  2 11:18:25 2008
New Revision: 682032

URL: http://svn.apache.org/viewvc?rev=682032&view=rev
Log:
Temporary workaround for SYNAPSE-417

Modified:
    synapse/trunk/java/modules/transports/pom.xml
    synapse/trunk/java/pom.xml

Modified: synapse/trunk/java/modules/transports/pom.xml
URL: http://svn.apache.org/viewvc/synapse/trunk/java/modules/transports/pom.xml?rev=682032&r1=682031&r2=682032&view=diff
==============================================================================
--- synapse/trunk/java/modules/transports/pom.xml (original)
+++ synapse/trunk/java/modules/transports/pom.xml Sat Aug  2 11:18:25 2008
@@ -39,6 +39,17 @@
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                    <excludes>
+                        <exclude>org/apache/synapse/transport/amqp/**</exclude>
+                    </excludes>
+                </configuration>
+             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-surefire-plugin</artifactId>
                 <version>2.3</version>
                 <configuration>
@@ -162,6 +173,19 @@
             <version>0.3.1</version>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.apache.qpid</groupId>
+            <artifactId>qpid-broker</artifactId>
+            <version>${qpid.version}</version>
+            <scope>test</scope>
+        </dependency>
+        <!-- qpid 1.0-incubating-M2.1 only works correctly with this version of mina -->
+        <dependency>
+            <groupId>org.apache.mina</groupId>
+            <artifactId>mina-core</artifactId>
+            <version>1.0.1</version>
+            <scope>test</scope>
+        </dependency>
         
         <!-- Workaround for SYNAPSE-400 -->
         <dependency>

Modified: synapse/trunk/java/pom.xml
URL: http://svn.apache.org/viewvc/synapse/trunk/java/pom.xml?rev=682032&r1=682031&r2=682032&view=diff
==============================================================================
--- synapse/trunk/java/pom.xml (original)
+++ synapse/trunk/java/pom.xml Sat Aug  2 11:18:25 2008
@@ -1097,6 +1097,18 @@
                 <updatePolicy>daily</updatePolicy>
             </snapshots>
         </repository>
+        <!-- this is for qpid -->
+        <repository>
+            <id>apache-incubating</id>
+            <name>Apache Maven 2 Incubating Repository</name>
+            <url>http://people.apache.org/repo/m2-incubating-repository/</url>
+            <releases>
+                <updatePolicy>never</updatePolicy>
+            </releases>
+            <snapshots>
+                <updatePolicy>interval:60</updatePolicy>
+            </snapshots>
+        </repository>
     </repositories>
 
     <modules>
@@ -1177,7 +1189,7 @@
         <bsf.version>3.0-beta2</bsf.version>
         <groovy.version>1.0</groovy.version>
         <servlet-api.version>2.3</servlet-api.version>
-        <qpid.version>1.0-incubating-M3-615355</qpid.version>
+        <qpid.version>1.0-incubating-M2.1</qpid.version>
 
     </properties>