我正在尝试更新我的插件在我的新Maven项目如下
<!-- Tomcat Maven Plugin -->
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat10-maven-plugin</artifactId>
<version>10.1.2</version>
<configuration>
<server>TomcatServer</server>
<url>http://localhost:8080/manager/text</url>
<path>/foundraising</path>
</configuration>
</plugin>
但是错误就出来了
Could not find artifact org.apache.tomcat.maven:tomcat-maven-plugin:pom:10.1.2 in central (https://repo.maven.apache.org/maven2)
我正在使用maven 3.8.1 IntellijIDEA 2023.1.2
谢谢你的帮助
1条答案
按热度按时间plicqrtu1#
在官方存储库中不存在这样的
tomcat10-maven-plugin
(也许您的公司有自己的私有存储库,在那里可以使用这种专有依赖项。基于官方的Tomcat Maven Plugin Github,有两个Maven模块,每个模块对应一个单独的工件:
tomcat7-maven-plugin
:https://mvnrepository.com/artifact/org.apache.tomcat.maven/tomcat7-maven-plugintomcat8-maven-plugin
:https://mvnrepository.com/artifact/org.apache.tomcat.maven/tomcat8-maven-plugin目前还没有像
tomcat9-maven-plugin
或tomcat10-maven-plugin
这样的东西。另一方面,有一个讨论支持Tomcat 9的问题:#30。