Posts Tagged ‘appfuse’

Skip AppFuse tests

To skip tests when running/compiling using AppFuse projects, set the maven.test.skip property: mvn jetty:run-war -Dmaven.test.skip=true

AppFuse and NetBeans

Opening an AppFuse in NetBeans might be done in two ways, two ways that I managed to mix up the first time… Either install the Maven plugin Mevenide2 for NetBeans, then you may simply open the Maven project generated by AppFuse directly. Without the Maven plugin, then you need to convert to project using mvn [...]

Generate full-source with AppFuse

In AppFuse 2.x you don’t automatically get the full source of the generated project. To generate the source, run: mvn appfuse:full-source On my Ubuntubox this all went well, but on my work laptop running Windows XP it failed with the fatal error: Illegal character in path at index 18: file:/C:/Documents and Settings/myuser/.m2/repository/org/apache/ant/ant/1.7.0/ant-1.7.0.jar Turned out to [...]

AppFuse: Generate NetBeans project files

Using mvn netbeans:netbeans to generate a NetBeans project from AppFuse failed with the following build error: The plugin ‘org.apache.maven.plugins:maven-netbeans-plugin’ does not exist or no valid version could be found Apprently it cannot find the netbeans plugin. To fix this, open the pom.xml of the project and add a new plugin repository: <pluginRepositories> … keep the [...]