IntelliJ Maven 集成

发布于 2024-10-20 21:16:36 字数 836 浏览 2 评论 0原文

我将 Maven 项目导入 IntelliJ,但它似乎忽略了为 Surefire 插件指定的

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.5</version>
            <configuration>
                <argLine>-Djava.endorsed.dirs=${settings.localRepository}/com/sun/metro/webservices-api/2.0.1
                </argLine>
                <excludes>
                    <exclude>**/CacheStoreTest.java</exclude>
                </excludes>
            </configuration>
        </plugin>

当我从 IDE 中运行测试时,它会获取 webservices-api.jar与 JDK6 捆绑在一起,而不是我的 Maven 存储库中的版本,并且它还在 CacheStoreTest 中运行测试,尽管我已指示应排除它们。

I imported a Maven project into IntelliJ, but it seems like it's ignoring the <configuration> specified for the surefire plugin

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.5</version>
            <configuration>
                <argLine>-Djava.endorsed.dirs=${settings.localRepository}/com/sun/metro/webservices-api/2.0.1
                </argLine>
                <excludes>
                    <exclude>**/CacheStoreTest.java</exclude>
                </excludes>
            </configuration>
        </plugin>

When I run the tests from within the IDE, it picks up the webservices-api.jar bundled with JDK6 instead of the version from my Maven repository and it also runs the tests in CacheStoreTest even though I've indicated they should be excluded.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拿命拼未来 2024-10-27 21:16:36

这是一个已知问题,请观看/投票。

It's a known issue, please watch/vote.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文