I am trying to build ActiveMQ from source so I can start development locally. I've installed Maven 2.0.6 and co'ed activeMQ from the following repository:
svn co https://svn.apache.org/repos/asf/activemq/branches/activemq-4.1 activemq-4.1 When I do the build as "mvn install" or "mvn compile" I get the following errors included below (It want's DestinationNode). "mvn validate" works just fine. [INFO] ...done. [INFO] [resources:resources] [INFO] Using default encoding to copy filtered resources. [INFO] [compiler:compile] [INFO] Compiling 805 source files to C:\java\activemq\r4.x.xsrc\activemq-4.1\act ivemq-core\target\classes [INFO] ------------------------------------------------------------------------ [ERROR] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Compilation failure C:\java\activemq\r4.x.xsrc\activemq-4.1\activemq-core\src\main\java\org\apache\a ctivemq\filter\DestinationMapNode.java:[34,43] cannot find symbol symbol: class DestinationNode public class DestinationMapNode implements DestinationNode { C:\java\activemq\r4.x.xsrc\activemq-4.1\activemq-core\src\main\java\org\apache\a ctivemq\filter\DestinationMapNode.java:[59,11] cannot find symbol symbol : class DestinationNode location: class org.apache.activemq.filter.DestinationMapNode C:\java\activemq\r4.x.xsrc\activemq-4.1\activemq-core\src\main\java\org\apache\a ctivemq\filter\DestinationMapNode.java:[186,8] cannot find symbol symbol : class DestinationNode location: class org.apache.activemq.filter.DestinationMapNode C:\java\activemq\r4.x.xsrc\activemq-4.1\activemq-core\src\main\java\org\apache\a ctivemq\filter\DestinationMapNode.java:[198,27] cannot find symbol symbol : class AnyChildDestinationNode location: class org.apache.activemq.filter.DestinationMapNode C:\java\activemq\r4.x.xsrc\activemq-4.1\activemq-core\src\main\java\org\apache\a ctivemq\filter\DestinationMapNode.java:[218,12] cannot find symbol symbol : class DestinationNode location: class org.apache.activemq.filter.DestinationMapNode C:\java\activemq\r4.x.xsrc\activemq-4.1\activemq-core\src\main\java\org\apache\a ctivemq\filter\DestinationMapNode.java:[218,37] cannot find symbol symbol : class DestinationNode location: class org.apache.activemq.filter.DestinationMapNode C:\java\activemq\r4.x.xsrc\activemq-4.1\activemq-core\src\main\java\org\apache\a ctivemq\filter\DestinationMapNode.java:[243,8] cannot find symbol symbol : class DestinationNode location: class org.apache.activemq.filter.DestinationMapNode C:\java\activemq\r4.x.xsrc\activemq-4.1\activemq-core\src\main\java\org\apache\a ctivemq\filter\DestinationMapNode.java:[254,8] cannot find symbol symbol : class DestinationNode location: class org.apache.activemq.filter.DestinationMapNode C:\java\activemq\r4.x.xsrc\activemq-4.1\activemq-core\src\main\java\org\apache\a ctivemq\filter\DestinationMapNode.java:[266,27] cannot find symbol symbol : class AnyChildDestinationNode location: class org.apache.activemq.filter.DestinationMapNode C:\java\activemq\r4.x.xsrc\activemq-4.1\activemq-core\src\main\java\org\apache\a ctivemq\filter\DestinationMapNode.java:[276,16] cannot find symbol symbol : class DestinationNode location: class org.apache.activemq.filter.DestinationMapNode [INFO] ------------------------------------------------------------------------ [INFO] For more information, run Maven with the -e switch [INFO] ------------------------------------------------------------------------ [INFO] Total time: 9 seconds [INFO] Finished at: Tue Aug 14 09:05:59 PDT 2007 [INFO] Final Memory: 25M/76M [INFO] ------------------------------------------------------------------------ -- View this message in context: http://www.nabble.com/Active-MQ-4.1.x-source-not-building-with-Maven-2.0-tf4268284s2354.html#a12147665 Sent from the ActiveMQ - Dev mailing list archive at Nabble.com.
