Howard Lewis Ship wrote: > This has been failing for quite some time now. > > The errors indicate a problem compiling against some Spring code. > > The output shows the spring-core library on the classpath however. > > Any ideas how to fix this and get rid of these damn nag messages?
Well, spring-core doesn't actually contain that missing BeanFactory. I think you need spring-beans.jar, which involves adding a <depend> tag to the hivemind project definition: https://svn.apache.org/repos/asf/gump/metadata/project/jakarta-hivemind.xml Looking at https://svn.apache.org/repos/asf/gump/metadata/project/spring.xml you need to change the line <depend project="spring" ids="spring-core"/> to <depend project="spring" ids="spring-core, spring-beans"/> or something similar. And yes, you do indeed have karma to fix that file yourself :-) cheers! Leo > [javac] private BeanFactory _beanFactory; > [javac] ^ > [javac] > /x1/gump/public/workspace/jakarta-hivemind/library/src/java/org/apache/hivemind/lib/impl/SpringBeanParameter.java:44: > cannot resolve symbol > [javac] symbol : class BeanFactory > [javac] location: class org.apache.hivemind.lib.impl.SpringBeanParameter (...) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
