无法在项目mongo-demo上执行目标io.thorntail:thorntail-maven-plugin:2.2.0.Final:package(默认)

时间:2018-11-02 22:02:07

标签: java maven thorntail

我的Maven项目遇到问题。我正在尝试使用“ mvn clean install”命令,但没有成功。我已经在Eclipse IDE中更新并清理了Maven项目。我还删除了“ .m2”目录中的“存储库”文件夹。这将再次创建文件夹,但我仍然收到相同的错误:

Screenshot of error

我的pom.xml文件:

<properties>
    <version.thorntail>2.2.0.Final</version.thorntail>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
    <failOnMissingWebXml>false</failOnMissingWebXml>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>io.thorntail</groupId>
            <artifactId>bom-all</artifactId>
            <version>${version.thorntail}</version>
            <scope>import</scope>
            <type>pom</type>
        </dependency>
    </dependencies>
</dependencyManagement>

<build>
    <finalName>demo</finalName>
    <plugins>
        <plugin>
            <groupId>io.thorntail</groupId>
            <artifactId>thorntail-maven-plugin</artifactId>
            <version>${version.thorntail}</version>

            <executions>
                <execution>
                    <goals>
                        <goal>package</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

<dependencies>

    <dependency>
        <groupId>io.thorntail</groupId>
        <artifactId>jaxrs</artifactId>
    </dependency>
    <dependency>
        <groupId>io.thorntail</groupId>
        <artifactId>cdi</artifactId>
    </dependency>
    <dependency>
        <groupId>org.hibernate.ogm</groupId>
        <artifactId>hibernate-ogm-mongodb</artifactId>
        <version>5.0.0.Final</version>
    </dependency>
    <dependency>
        <groupId>org.mongodb</groupId>
        <artifactId>mongo-java-driver</artifactId>
        <version>3.8.0</version>
    </dependency>
</dependencies>

任何帮助将不胜感激!

2 个答案:

答案 0 :(得分:1)

问题是Maven版本(顺便说一句,您正在使用哪个?)

当我使用eclipse的嵌入式Maven(版本3.5.3 )运行 Thorntail 项目时,有效

当我使用本地Maven(版本3.6.0 )运行它时,我会遇到相同的错误。

解决方案:使用兼容版本的Maven。 (尝试3.5.3 3.5.4 两者均能解决棘手问题

如果要配置其他Eclipse Maven版本,请访问:

Eclipse->首选项-> Maven->安装

您可以添加一个新的

答案 1 :(得分:0)

由于Thorntail 2.x中的第三方依赖关系而存在问题,该依赖关系与最新的Maven版本不兼容。 Thorntail的新版本应该是2.3.0。最终版本一旦发布。

在GitHub上,您可以跟踪status of the issue here