Edit pom.xml, Add scanIntervalSeconds element to allow jetty scanning changes in contextPath
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>${jetty.version}</version>
<configuration>
<webApp>
<contextPath>/</contextPath>
</webApp> ...
Friday, December 9, 2016
Friday, June 24, 2016
Maven, Install library from local path
mvn install:install-file -Dfile=c:\ojdbc6.jar -DgroupId=com.oracle
-DartifactId=com.oracle -Dversion=11.2.0.4 -Dpackaging=j...