Skip to content

Instantly share code, notes, and snippets.

@dannyduc
Created August 10, 2012 18:54
Show Gist options
  • Save dannyduc/3316749 to your computer and use it in GitHub Desktop.
Save dannyduc/3316749 to your computer and use it in GitHub Desktop.
Maven plugin for "mvn jetty:run"
<build>
...
<plugins>
...
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>7.4.2.v20110526</version>
<configuration>
<scanIntervalSeconds>0</scanIntervalSeconds>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment