ide中配置好了jetty的插件,但是在右侧maven工具处没有找到对应插件
我也踩过这个坑( 1 )
jetty/tomcat
详细描述
错误截图
编辑于2024-11-23
-
[北京|荣耀师兄]JAVA-张恒0
你添加的是依赖,不是插件。jetty插件代码如下,需要放在build标签下,且build标签中自带的plugins标签需要注释掉,否则无法下载。
<plugins>
<!--maven的jetty插件-->
<plugin>
<groupId>org.eclse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.4.5.v20170502</version>
<configuration>
<httpConnector>
<port>8081</port>
<host>localhost</host>
</httpConnector>
<scanIntervalSeconds>10</scanIntervalSeconds>
</configuration>
</plugin>
</plugins>编辑于2019-10-26
- 去第 页