tomcat Maven 3和Cargo - '未找到前缀' cargo '的插件'

nue99wik  于 2023-06-06  发布在  Maven
关注(0)|答案(4)|浏览(208)

我刚刚将以下代码添加到我的pom.xml中(如here上所指定的):

<build>
    <plugins>

        <plugin>
            <groupId>org.codehaus.cargo</groupId>
            <artifactId>cargo-maven2-plugin</artifactId>
            <version>1.1.1</version>
            <configuration>
                <container>
                    <containerId>tomcat7x</containerId>
                    <zipUrlInstaller>
                        <url>http://archive.apache.org/dist/tomcat/tomcat-7/v7.0.12/bin/apache-tomcat-7.0.12.zip</url>
                    </zipUrlInstaller>
                </container>
            </configuration>
        </plugin>
    </plugins>
</build>

但是,当我运行mvn clean verify cargo:run时,我得到以下结果:

No plugin found for prefix 'cargo' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo]

任何帮助将不胜感激。

j2cgzkjk

j2cgzkjk1#

您必须定义pluginGroup才能在命令行中使用缩写。

w8biq8rn

w8biq8rn2#

另一个解决方案是指定完整的插件名称org.codehaus.cargo:cargo-maven2-plugin而不是cargo
因为你将是mvn clean verify org.codehaus.cargo:cargo-maven2-plugin:run

vcudknz3

vcudknz33#

这是我的配置:

<plugin>
            <groupId>org.codehaus.cargo</groupId>
            <artifactId>cargo-maven2-plugin</artifactId>
            <version>1.8.3</version>
            <configuration>
                <container>
                    <containerId>tomcat9x</containerId>
                    <type>embedded</type>
                </container>
                <deployables>
                    <deployable>
                        <type>war</type>
                        <location>${project.build.directory}/${project.build.finalName}.war</location>
                        <properties>
                            <context>/</context>
                        </properties>
                    </deployable>
                </deployables>
            </configuration>
        </plugin>
vx6bjr1n

vx6bjr1n4#

cargo-maven 2-plugin已被cargo-maven 3-plugin取代。在这里查看我的工作配置:https://stackoverflow.com/a/76372717/1384839

相关问题