NetBeans RCP 应用程序类路径

发布于 2024-11-04 13:01:56 字数 269 浏览 3 评论 0原文

我正在开发 NetBeans RCP 应用程序。该应用程序由多个模块组成,所有模块(以及应用程序项目本身)都由maven管理。我需要将自定义 jar 添加到应用程序类路径。有简单的方法吗?特别是,我需要添加每个模块的类路径,以便应用程序能够加载模块依赖项,如下所示:

ModuleXxx has dependency on LibXxx ModuleYyy 依赖于 ModuleXxx

我需要获取 LibXxx jar 路径,该路径应该位于模块类路径中。

感谢您的任何帮助。

I am developing NetBeans RCP application. The application consists of several modules, all modules (and also the application project itself) are managed by maven. I need to add custom jar to the application classpath. Is there easy way to do it? Especialy, I need to add the classpaths of every module for the application to be able to load module dependencies as this:

ModuleXxx has dependency on LibXxx
ModuleYyy has dependency on ModuleXxx

I need to get LibXxx jar path, which should be in the module classpath.

Thanks for any help.

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

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

发布评论

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

评论(2

岁吢 2024-11-11 13:01:56

我本以为从 ModuleXxx 到 LibXxx 的简单 Maven 依赖就足够了。你尝试过吗?有什么问题吗?

I would have thought a simple Maven dependency from ModuleXxx to LibXxx should be enough. Did you try that? Any issues?

欢你一世 2024-11-11 13:01:56

你不能将“jar”添加到类路径中,因为netbeansrcp是模块的集合,它有自己独立的类路径;-)所以,你应该创建新的模块,它有依赖项“jar”(例如maven),然后在pom.xml中。 xml。然后在依赖模块中将依赖项设置为新的 LibWrappedModule

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>nbm-maven-plugin</artifactId>
<version>3.2</version>
<extensions>true</extensions>
<configuration>
                <publicPackages>
                    <publicPackage>com.mycompany.textfilter</publicPackage>
                </publicPackages>

</configuration>

更多信息https: //platform.netbeans.org/tutorials/70/nbm-maven-quickstart.html

You cannot add "jar" to classpath, because netbeansrcp is SET of modules, which has own independent classpath ;-) So, you should create new module, which has in dependency "jar" (by maven for example) and then in pom.xml. Then set in your dependent module dependency to new LibWrappedModule

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>nbm-maven-plugin</artifactId>
<version>3.2</version>
<extensions>true</extensions>
<configuration>
                <publicPackages>
                    <publicPackage>com.mycompany.textfilter</publicPackage>
                </publicPackages>

</configuration>

more information is there https://platform.netbeans.org/tutorials/70/nbm-maven-quickstart.html

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