Author: vinoski
Date: Mon Oct 30 21:42:57 2006
New Revision: 469378
URL: http://svn.apache.org/viewvc?view=rev&rev=469378
Log:
maven dir structure changes
Added:
incubator/qpid/branches/maven/client/src/test/java/
- copied from r468103, incubator/qpid/branches/maven/client/src/test/src/
incubator/qpid/branches/maven/client/src/test/java/org/
- copied from r469346,
incubator/qpid/branches/maven/client/src/test/src/org/
Removed:
incubator/qpid/branches/maven/client/src/test/src/
Modified:
incubator/qpid/branches/maven/client/pom.xml
incubator/qpid/branches/maven/client/src/test/java/org/apache/qpid/codec/BasicDeliverTest.java
Modified: incubator/qpid/branches/maven/client/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/qpid/branches/maven/client/pom.xml?view=diff&rev=469378&r1=469377&r2=469378
==============================================================================
--- incubator/qpid/branches/maven/client/pom.xml (original)
+++ incubator/qpid/branches/maven/client/pom.xml Mon Oct 30 21:42:57 2006
@@ -63,8 +63,13 @@
<artifactId>qpid-common</artifactId>
</dependency>
<dependency>
+ <groupId>org.apache.qpid</groupId>
+ <artifactId>qpid-broker</artifactId>
+ </dependency>
+ <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
+ <version>4.0</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -72,5 +77,60 @@
<artifactId>easymockclassextension</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>jmscts</groupId>
+ <artifactId>jmscts</artifactId>
+ <version>0.5-b2</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>xml-security</groupId>
+ <artifactId>xml-security</artifactId>
+ <version>1.0.4</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>ant-test</id>
+ <phase>test</phase>
+ <configuration>
+ <tasks>
+ <taskdef name="junit"
+
classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTask">
+ <classpath>
+ <path refid="maven.test.classpath"/>
+ </classpath>
+ </taskdef>
+ <mkdir dir="${project.build.directory}/test-classes"/>
+ <junit fork="yes" showoutput="true" haltonfailure="yes">
+ <test name="org.apache.qpid.client.AllClientUnitTests"/>
+ <formatter type="plain"/>
+ <classpath>
+ <path refid="maven.test.classpath"/>
+ </classpath>
+ </junit>
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>
Modified:
incubator/qpid/branches/maven/client/src/test/java/org/apache/qpid/codec/BasicDeliverTest.java
URL:
http://svn.apache.org/viewvc/incubator/qpid/branches/maven/client/src/test/java/org/apache/qpid/codec/BasicDeliverTest.java?view=diff&rev=469378&r1=469346&r2=469378
==============================================================================
---
incubator/qpid/branches/maven/client/src/test/java/org/apache/qpid/codec/BasicDeliverTest.java
(original)
+++
incubator/qpid/branches/maven/client/src/test/java/org/apache/qpid/codec/BasicDeliverTest.java
Mon Oct 30 21:42:57 2006
@@ -196,7 +196,7 @@
return null; //To change body of implemented methods use File |
Settings | File Templates.
}
- public int getScheduledWriteRequests()
+ public int getScheduledWriteMessages()
{
return 0; //To change body of implemented methods use File |
Settings | File Templates.
}