Jetty7/8 的Maven插件配置:http://wiki.eclipse.org/Jetty/Feature/Jetty_Maven_Plugin
Jetty9 最新的Maven插件配置:http://www.eclipse.org/jetty/documentation/current/jetty-maven-plugin.html 或者 最新RELEASE版配置
Jetty 各个版本的限制:http://wiki.eclipse.org/Jetty/Starting/Jetty_Version_Comparison_Table
Jetty 7 必须 Jdk 1.5+,Servlet 2.5,类似于 Tomcat 6,最新 Release 版本:
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>7.6.17.v20150415</version>
</plugin>
Jetty 8 必须 Jdk 1.6+,Servlet 3.0,类似于 Tomcat 7,最新 Release 版本:
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>8.1.16.v20140903</version>
</plugin>
Jetty 9 必须 Jdk 1.7+,Servlet 3.0+,类似于 Tomcat 8,最新 Release 版本:
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.2.10.v20150310</version>
</plugin>
Maven
http://maven.apache.org/docs/history.html
| Release Date | Version | Required Java Version | Links |
| 2015-11-14 | 3.3.9 | Java 7 | announce , release notes , reference documentation |
| 2015-04-28 | 3.3.3 | announce , release notes , reference documentation | |
| 2015-03-18 | 3.3.1 | announce , release notes , reference documentation | |
| 2014-12-20 | 3.2.5 | Java 6 | announce , release notes , reference documentation |
| 2014-08-17 | 3.2.3 | announce , release notes , reference documentation | |
| 2014-06-26 | 3.2.2 | announce , release notes , reference documentation | |
| 2014-02-21 | 3.2.1 | announce , release notes , reference documentation | |
| 2013-10-04 | 3.1.1 | Java 5 | announce , release notes , reference documentation |
| 2013-07-15 | 3.1.0 | announce , release notes , reference documentation | |
| 2013-06-10 | 3.1.0-alpha-1 | announce , release notes | |
| 2013-02-23 | 3.0.5 | announce , release notes , reference documentation | |
| 2012-01-20 | 3.0.4 | announce , release notes , reference documentation | |
| 2011-03-04 | 3.0.3 | announce , release notes , reference documentation | |
| 2011-01-12 | 3.0.2 | announce , release notes , reference documentation |
版权声明:本文为andymu077原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。