Maven之配置jetty
阿新 • • 發佈:2018-03-31
spring plugin use ase log ring code ont eclipse
<plugin> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>9.2.19.v20160908</version> <configuration> <jvmArgs>JAVA_OPTS=-javaagent:springloaded-1.2.5.RELEASE.jar -noverify</jvmArgs> <useTestClasspath>true</useTestClasspath> <webApp> <contextPath>/${project.artifactId}</contextPath> </webApp> <httpConnector> <port>7080</port> </httpConnector> </configuration> </plugin>
Maven之配置jetty