Maven plugin使用学习

maven plugin使用学习

官网可用的插件:http://maven.apache.org/plugins/index.html

目录

==============================================

maven-compiler-plugin

jetty-maven-plugin

===============================================

maven-compiler-plugin

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-compiler-plugin</artifactId>
  <version>3.8.0</version>
  <configuration>
    <source>1.8</source>
    <target>1.8</target>
  </configuration>
</plugin>

jetty-maven-plugin

网址:https://www.eclipse.org/jetty/documentation/current/jetty-maven-plugin.html

<plugin>
  <groupId>org.eclipse.jetty</groupId>
  <artifactId>jetty-maven-plugin</artifactId>
  <version>9.4.12.v20180830</version>
  <configuration>
    <scanIntervalSeconds>2</scanIntervalSeconds>
    <webApp>
      <contextPath>/weba</contextPath>
    </webApp>
  </configuration>
</plugin>
mvn jetty:run

猜你喜欢

转载自www.cnblogs.com/yangchongxing/p/9843875.html