Hey Ryan,
Your dependencies are being included as <provided> scope
107 <dependency>
108 <groupId>org.jboss.forge</groupId>
109 <artifactId>plugin-spring-mvc</artifactId>
110 <version>1.0.0-SNAPSHOT</version>
111 <scope>provided</scope>
112 </dependency>
Which Forge warns about (it probably did this to you once (easy to miss),
and it probably got checked in:)
***WARNING*** Dependency
[org.jboss.forge:plugin-spring-mvc:jar::1.0.0-SNAPSHOT] was not correctly
marked as PROVIDED scope; this has been corrected.
And that's because you used the org.jboss.forge package (forge claims this
namespace for its own internals,) so you should use a different package for
your plugins IMO, such as "org.jboss.forge.spring". This is why the project
compiles but does not run when installed. I should add this to the plugin
docs.
--
Lincoln Baxter, III
http://ocpsoft.org
"Simpler is better."