On Sunday November 12 2006 12:40 pm, Steve Vinoski wrote:
> Under branches/mvn is a first cut at building and testing the java
> code with maven. I would appreciate it if others could checkout the
> branch and try it, especially on platforms other than OS X. All
> feedback welcomed.
>
> BTW, be sure to get "mvn" and not "maven" as the latter is an old
> branch that doesn't work and needs to go away.
>
> --steve

It doesn't seem to build in client due to a dependency on jms jar which 
isn't available in the maven repositories.

I've included a patch below.

-- 
J. Daniel Kulp
Principal Engineer
IONA
P: 781-902-8727    C: 508-380-7194   F:781-902-8001
[EMAIL PROTECTED]




Index: client/pom.xml
===================================================================
--- client/pom.xml      (revision 474414)
+++ client/pom.xml      (working copy)
@@ -86,6 +86,12 @@
       <artifactId>jmscts</artifactId>
       <version>0.5-b2</version>
       <scope>test</scope>
+      <exclusions>
+          <exclusion>
+              <groupId>jms</groupId>
+              <artifactId>jms</artifactId>
+          </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>xml-security</groupId>

Reply via email to