> I believe Maven is using the original Item.class file in > dspace-api-1.5.1.jar instead of my customized file. How do I > instruct Maven to look at my class when compiling?
Hi, I'm going to assume you have the entire dspace-api in place beside the release dspace folder. I believe the magic here is going to come from you requiring the api in the pom.xml for each module that needs to use your new code. Something like this: <dependency> <groupId>org.dspace</groupId> <artifactId>dspace-api</artifactId> </dependency> For instance, we've applied the Shibboleth patch to our installation of DSpace, which requires some modification of dspace-api. So we've added the above dependency to the pom.xml for the jspui and xmlui modules. -- HARDY POTTINGER <[email protected]> University of Missouri Library Systems http://lso.umsystem.edu/~hardy/ "No matter how far down the wrong road you've gone, turn back." --Turkish proverb ------------------------------------------------------------------------------ SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada. The future of the web can't happen without you. Join us at MIX09 to help pave the way to the Next Web now. Learn more and register at http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ _______________________________________________ DSpace-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-tech

