Hi Mike,
Michael Lake wrote:
in addition to that, i had to mess with the pom.xml a bit before the
proper jars were found
even then I had to manually install a jar for
org.safehaus.jug:jug-asl:2.0.0
anyone know if I really need that jar with the "jcr" portion of the
spring-modules?
perhaps I can exclude it..along with MANY other dependencies it's
carrying.
I have excluded it in my POM (see below for the relevant snippet). Note
that I have also excluded the Spring framework itself as I wanted to use
Spring 2.5 explicitely instead of Spring 2.0.x. As a side note: There is
some traffic on the Spring modules dev list again. Today, the new lead
for Spring modules - Colin Yates - told on the list that he intends to
release Spring modules 0.9 at the end of February.
<dependency>
<groupId>org.springmodules</groupId>
<artifactId>spring-modules-jcr</artifactId>
<version>0.8</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</exclusion>
<exclusion>
<groupId>jsr170</groupId>
<artifactId>jsr170</artifactId>
</exclusion>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.jackrabbit</groupId>
<artifactId>jackrabbit-jca</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.jackrabbit</groupId>
<artifactId>jackrabbit-jcr-rmi</artifactId>
</exclusion>
<exclusion>
<groupId>jeceira</groupId>
<artifactId>jeceira</artifactId>
</exclusion>
<exclusion>
<groupId>aparzev</groupId>
<artifactId>doka</artifactId>
</exclusion>
<exclusion>
<groupId>aparzev</groupId>
<artifactId>commons</artifactId>
</exclusion>
<exclusion>
<groupId>jug</groupId>
<artifactId>jug-asl</artifactId>
</exclusion>
<exclusion>
<groupId>geronimo-spec</groupId>
<artifactId>geronimo-spec-jta</artifactId>
</exclusion>
<exclusion>
<groupId>geronimo-spec</groupId>
<artifactId>
geronimo-spec-j2ee-connector
</artifactId>
</exclusion>
</exclusions>
</dependency>
Bye,
Daniel