[
https://issues.apache.org/activemq/browse/AMQ-1857?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=47189#action_47189
]
Wouter de vaal commented on AMQ-1857:
-------------------------------------
I got everything working with the following dependencies, perhaps you should
update the documents
(http://activemq.apache.org/maven2-activemq-broker-plugin.html) to reflect this:
{noformat}
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
<version>2.5.5</version>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-xbean</artifactId>
<version>6.1.11</version>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-activemq</artifactId>
<version>1.1.0</version>
</dependency>
</dependencies>
{noformat}
> running activemq using maven causes NoClassDefFoundError:
> org/springframework/core/io/FileSystemResource
> --------------------------------------------------------------------------------------------------------
>
> Key: AMQ-1857
> URL: https://issues.apache.org/activemq/browse/AMQ-1857
> Project: ActiveMQ
> Issue Type: Bug
> Components: Broker
> Affects Versions: 5.1.0
> Environment: maven 2.0.9, java 1.6
> Reporter: Wouter de vaal
> Fix For: 5.3.0
>
>
> I tried to follow these instructions:
> http://activemq.apache.org/maven2-activemq-broker-plugin.html
> Create pom with plugin definition:
> <build>
> <plugins>
> <plugin>
> <groupId>org.apache.activemq.tooling</groupId>
> <artifactId>maven-activemq-plugin</artifactId>
> <version>5.1.0</version>
> <configuration>
> <configUri>
> xbean:file:activemq.xml
> </configUri>
> <fork>false</fork>
> <systemProperties>
> <property>
> <name>
>
> org.apache.activemq.default.directory.prefix
> </name>
> <value>./target/</value>
> </property>
> </systemProperties>
> </configuration>
> </plugin>
> </plugins>
> </build>
> And when I call mvn activemq:run
> I get:
> [INFO] Scanning for projects...
> [INFO] Searching repository for plugin with prefix: 'activemq'.
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Building main project
> [INFO] task-segment: [activemq:run]
> [INFO]
> ------------------------------------------------------------------------
> [INFO] [activemq:run]
> [INFO] Loading broker configUri: xbean:file:activemq.xml
> [INFO]
> ------------------------------------------------------------------------
> [ERROR] BUILD ERROR
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Failed to start ActiveMQ Broker
> Embedded error: Could not load xbean factory:java.lang.NoClassDefFoundError:
> org/springframework/core/io/FileSystemResource
> [INFO]
> ------------------------------------------------------------------------
> [INFO] For more information, run Maven with the -e switch
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Total time: 2 seconds
> [INFO] Finished at: Thu Jul 17 15:40:50 CEST 2008
> [INFO] Final Memory: 5M/82M
> [INFO]
> ------------------------------------------------------------------------
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.