[ http://issues.apache.org/jira/browse/BEEHIVE-1136?page=all ]
Eddie O'Neil closed BEEHIVE-1136. --------------------------------- Closing as such. > Using stax-api from woodstox, missing dependencies in pom.xml > ------------------------------------------------------------- > > Key: BEEHIVE-1136 > URL: http://issues.apache.org/jira/browse/BEEHIVE-1136 > Project: Beehive > Issue Type: Improvement > Reporter: Davanum Srinivas > Assigned To: Eddie O'Neil > Fix For: v.next > > > Folks, > I was able to get "ant clean build install" running with the following diff > on a fresh box with no maven2 repo > =================================================================== > --- wsm-imports.xml (revision 426886) > +++ wsm-imports.xml (working copy) > @@ -37,7 +37,7 @@ > <fileset id="commons-codec.fileset" > file="${m2.repo}/commons-codec/commons-codec/1.3/commons-codec-1.3.jar"/> > <fileset id="servlet.fileset" > file="${m2.repo}/javax/servlet/servlet-api/2.4/servlet-api-2.4.jar"/> > <fileset id="xbean.fileset" > file="${m2.repo}/xmlbeans/xbean/2.1.0/xbean-2.1.0.jar"/> > - <fileset id="jsr173.fileset" > file="${m2.repo}/xmlbeans/jsr173_1.0_api/1.0/jsr173_1.0_api-1.0.jar"/> > + <fileset id="jsr173.fileset" > file="${m2.repo}/stax/stax-api/1.0/stax-api-1.0.jar"/> > <fileset id="axis.fileset" file="${m2.repo}/axis/axis/1.3/axis-1.3.jar"/> > <fileset id="axis-jaxrpc.fileset" > file="${m2.repo}/axis/axis-jaxrpc/1.3/axis-jaxrpc-1.3.jar"/> > Index: pom.xml > =================================================================== > --- pom.xml (revision 426886) > +++ pom.xml (working copy) > @@ -54,6 +54,23 @@ > <artifactId>xbean</artifactId> > <version>2.1.0</version> > </dependency> > + <dependency> > + <groupId>commons-codec</groupId> > + <artifactId>commons-codec</artifactId> > + <version>1.3</version> > + </dependency> > + <dependency> > + <groupId>stax</groupId> > + <artifactId>stax-api</artifactId> > + <version>1.0</version> > + </dependency> > + <dependency> > + <groupId>javax.servlet</groupId> > + <artifactId>servlet-api</artifactId> > + <version>2.4</version> > + </dependency> > + > + > <!-- This JAR has disappeared from the Maven2 repository and needs to be > downloaded manually. > <dependency> > <groupId>xmlbeans</groupId> -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira
