Maven配置文件问题

发布于 2024-10-31 12:28:26 字数 283 浏览 5 评论 0原文

我是 Maven 新手,我有一个非常基本的问题。我有一个 J2EE 应用程序(EAR)。当我构建这个应用程序时,我想忽略我的 war 的 lib 文件夹中的一些依赖项,因为这个 jars 将由我的服务器提供,如 jboss(所有 hibernate 东西)。但是当我在嵌入式jetty服务器中运行这个war项目时,我需要它位于我的lib文件夹中。我听说 Maven 配置文件可用于类似目的。有人可以给我一个例子或一些细节,或者有其他方法来完成这项任务。我有一个 EAR,其中包含 ejb 模块(jar)和 web 模块(war)。

谢谢

I am new to Maven and I have very basic question. I have one J2EE app(EAR). When I build this app I want to ignore some dependency in lib folder of my war as this jars will be provided by my server like jboss(all hibernate stuff). But when I run this war project inside embedded jetty server then I need it to be inside my lib folder. I heard about the maven profile which can be used for similar purpose. Can somebody give me an example or some detail about it or is there some other way to achieve this task. I have an EAR which contains ejb module(jar) and web module(war).

Thanks

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

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

发布评论

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

评论(1

寒尘 2024-11-07 12:28:26

在配置文件中指定您的库。在 jboss 配置文件中为您的库设置 provided。例如:

<profiles>
    <profile>
        <id>jboss</id>
        …
        <dependencies>
            <dependency>
                      <groupid>...</groupid>
                      <artifactid>...</artifactid>
                      <version>...</version>
                      <scope>provided</scope>
                </dependency>
        </dependencies>
        …
    </profile>
    <profile>
        <id>jetty</id>
        …
        <dependencies>
            <dependency>
                      <groupid>...</groupid>
                      <artifactid>...</artifactid>
                      <version>...</version>
                </dependency>
        </dependencies>
        …
    </profile>
</profiles>

Specify your library in a profile. Set <scope>provided</scope> for your library in a jboss profile. E.g.:

<profiles>
    <profile>
        <id>jboss</id>
        …
        <dependencies>
            <dependency>
                      <groupid>...</groupid>
                      <artifactid>...</artifactid>
                      <version>...</version>
                      <scope>provided</scope>
                </dependency>
        </dependencies>
        …
    </profile>
    <profile>
        <id>jetty</id>
        …
        <dependencies>
            <dependency>
                      <groupid>...</groupid>
                      <artifactid>...</artifactid>
                      <version>...</version>
                </dependency>
        </dependencies>
        …
    </profile>
</profiles>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文