...
| Tip |
|---|
When maven fails to dependency-inject overloaded resources, use: Note that for the other webapp sources, you can add them to the plugin's extra scan targets for dynamic reload. |
...
When using mvn jetty:run, you don't need to configure anything.
Just add a dependency like:
| Code Block |
|---|
<dependency> <groupId>org.dojotoolkit</groupId> <artifactId>dojo-war</artifactId> <version>1.2-SNAPSHOT</version> <type>war</type> </dependency> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-test</artifactId> <version>6.1.12.rc3</version> <type>war</type> </dependency> |
If configured manually, it would look like:
...