Tomcat 10 的 Maven 插件

问题描述 投票:0回答:1

我正在尝试在我的新 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

感谢您的帮助

maven tomcat maven-3
1个回答
3
投票

官方存储库中不存在这样的

tomcat10-maven-plugin
(也许您的公司有自己的私有存储库,其中可能提供此类专有依赖项。

基于官方 Tomcat Maven 插件 Github 存储库,有两个 Maven 模块,每个模块对应一个单独的工件:

目前还没有

tomcat9-maven-plugin
tomcat10-maven-plugin
之类的东西。

另一方面,有一个讨论对 Tomcat 9 支持的问题:#30

© www.soinside.com 2019 - 2024. All rights reserved.