Maven在JxBrowser中的其他依赖项内部依赖于依赖项

时间:2017-02-03 10:20:22

标签: java maven jxbrowser

我在Java项目中使用了Maven Profiles。

我使用pom.xml创建了web-processing-jxbrowser模块,其中包含三个配置文件:linux-deploy,mac-deploy和windows-deploy。

当依赖于一个lib(内部没有依赖关系)时它适用于我但是在jxbrowser的情况下它看起来不同(不工作)。

<profiles>

    <profile>
        <id>windows-deploy</id>

        <dependencies>
            <dependency>
                <groupId>com.teamdev.jxbrowser</groupId>
                <artifactId>jxbrowser-win</artifactId>
                <version>${jxbrowser.version}</version>
            </dependency>
        </dependencies>
    </profile>

    <profile>
        <id>mac-deploy</id>

        <dependencies>
            <dependency>
                <groupId>com.teamdev.jxbrowser</groupId>
                <artifactId>jxbrowser-mac</artifactId>
                <version>${jxbrowser.version}</version>
            </dependency>
        </dependencies>
    </profile>

    <profile>
        <id>linux-deploy</id>

        <dependencies>
            <dependency>
                <groupId>com.teamdev.jxbrowser</groupId>
                <artifactId>jxbrowser-linux64</artifactId>
                <version>${jxbrowser.version}</version>
            </dependency>
        </dependencies>
    </profile>

</profiles>

例如,当我查看jxbrowser-mac内部的mac-deploy时,它进入了其他依赖项 - 主jxbrowser lib,它看起来像这样:

<?xml version="1.0" ?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.teamdev.jxbrowser</groupId>
    <artifactId>jxbrowser-mac</artifactId>
    <version>6.12</version>
    <dependencies>
        <dependency>
            <groupId>com.teamdev.jxbrowser</groupId>
            <artifactId>jxbrowser</artifactId>
            <version>6.12</version>
        </dependency>
    </dependencies>
</project>

我还设置了存储库以下载正确的库:

<repositories>
    <repository>
        <id>com.teamdev</id>
        <url>http://maven.teamdev.com/repository/products</url>
    </repository>
</repositories>

...在编译中它下载了正确的库(我在外部库中看到它们)。

<dependencies>...</dependencies>中添加了正确的许可依赖性,如下所示:

<dependency>
    <groupId>license</groupId>
    <artifactId>license</artifactId>
    <version>${jxbrowser.version}</version>
    <scope>system</scope>
    <systemPath>${basedir}/resources/libs/license.jar</systemPath>
</dependency>

它编译得很好,但是当我尝试运行应用程序时,它找不到主jxbrowser lib。

我找到了将此lib依赖项添加到<dependencies>...</dependencies>的临时解决方案,如下所示:

<dependencies>

    <dependency>
        <groupId>license</groupId>
        <artifactId>license</artifactId>
        <version>${jxbrowser.version}</version>
        <scope>system</scope>
        <systemPath>${basedir}/resources/libs/license.jar</systemPath>
    </dependency>

    <dependency>
        <groupId>com.teamdev.jxbrowser</groupId>
        <artifactId>jxbrowser-win</artifactId>
        <version>${jxbrowser.version}</version>
    </dependency>

    <dependency>
        <groupId>com.teamdev.jxbrowser</groupId>
        <artifactId>jxbrowser-mac</artifactId>
        <version>${jxbrowser.version}</version>
    </dependency>

    <dependency>
        <groupId>com.teamdev.jxbrowser</groupId>
        <artifactId>jxbrowser-linux64</artifactId>
        <version>${jxbrowser.version}</version>
    </dependency>

</dependencies>

...但是当我需要在当前平台上使用它们时,我不想下载所有的库。

编译完成后(jxbrowser运行正常)但有一个问题:

为什么在按配置文件输入依赖项时,libs不能很好地包括在内?

当我在其他模块中使用相同的设置时 - 它可以工作(因为这里是一个lib的依赖 - 而不是lib与其他依赖的内部)

我认为其他依赖项中的依赖存在一些问题(作为jxbrower依赖内的jxbrowser-mac lib依赖项

runnig app时出错:

java.lang.NoClassDefFoundError: com/teamdev/jxbrowser/chromium/swing/BrowserView
    at com.goodsoft.stockbox.jxbrowser.JxBrowser.initAndDisplayUI(JxBrowser.java:34)
    at com.goodsoft.stockbox.market.view.window.StockBoxWindowController.lambda$createMenuWindow$17(StockBoxWindowController.java:211)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2022)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2348)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
    at javax.swing.AbstractButton.doClick(AbstractButton.java:376)
    at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:833)
    at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:877)
    at java.awt.Component.processMouseEvent(Component.java:6535)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3324)
    at java.awt.Component.processEvent(Component.java:6300)
    at java.awt.Container.processEvent(Container.java:2236)
    at java.awt.Component.dispatchEventImpl(Component.java:4891)
    at java.awt.Container.dispatchEventImpl(Container.java:2294)
    at java.awt.Component.dispatchEvent(Component.java:4713)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4888)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4525)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4466)
    at java.awt.Container.dispatchEventImpl(Container.java:2280)
    at java.awt.Window.dispatchEventImpl(Window.java:2750)
    at java.awt.Component.dispatchEvent(Component.java:4713)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:758)
    at java.awt.EventQueue.access$500(EventQueue.java:97)
    at java.awt.EventQueue$3.run(EventQueue.java:709)
    at java.awt.EventQueue$3.run(EventQueue.java:703)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76)
    at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86)
    at java.awt.EventQueue$4.run(EventQueue.java:731)
    at java.awt.EventQueue$4.run(EventQueue.java:729)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:728)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
Caused by: java.lang.ClassNotFoundException: com.teamdev.jxbrowser.chromium.swing.BrowserView
    at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    ... 40 more

修改

当我向<dependencies>...</dependencies>添加jxbrowser对主12:03:25 SEVERE: The /chromium-mac.xz resource cannot be found in JAR files java.lang.ClassNotFoundException: com.teamdev.jxbrowser.chromium.internal.res.IDEAJARAnalyzerFixMac at java.net.URLClassLoader.findClass(URLClassLoader.java:381) at java.lang.ClassLoader.loadClass(ClassLoader.java:424) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331) at java.lang.ClassLoader.loadClass(ClassLoader.java:357) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:264) at com.teamdev.jxbrowser.chromium.internal.v.a(SourceFile:94) at com.teamdev.jxbrowser.chromium.internal.v.a(SourceFile:33) at com.teamdev.jxbrowser.chromium.internal.b.run(SourceFile:1054) at java.security.AccessController.doPrivileged(Native Method) at com.teamdev.jxbrowser.chromium.internal.ChromiumExtractor.extract(SourceFile:47) at com.teamdev.jxbrowser.chromium.internal.ipc.IPC.<init>(SourceFile:1096) at com.teamdev.jxbrowser.chromium.internal.ipc.IPC.create(SourceFile:49) at com.teamdev.jxbrowser.chromium.internal.ipc.IPC$a.<clinit>(SourceFile:39) at com.teamdev.jxbrowser.chromium.internal.ipc.IPC.getDefault(SourceFile:43) at com.teamdev.jxbrowser.chromium.BrowserContext.<init>(SourceFile:63) at com.teamdev.jxbrowser.chromium.BrowserContext.<clinit>(SourceFile:25) at com.teamdev.jxbrowser.chromium.Browser.<init>(SourceFile:131) at com.goodsoft.stockbox.jxbrowser.TabFactory.createTab(TabFactory.java:27) at com.goodsoft.stockbox.jxbrowser.TabFactory.createFirstTab(TabFactory.java:19) at com.goodsoft.stockbox.jxbrowser.JxBrowser.initAndDisplayUI(JxBrowser.java:34) at com.goodsoft.stockbox.market.view.window.StockBoxWindowController.lambda$createMenuWindow$17(StockBoxWindowController.java:211) at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2022) at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2348) at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402) at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259) at javax.swing.AbstractButton.doClick(AbstractButton.java:376) at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:833) at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:877) at java.awt.Component.processMouseEvent(Component.java:6535) at javax.swing.JComponent.processMouseEvent(JComponent.java:3324) at java.awt.Component.processEvent(Component.java:6300) at java.awt.Container.processEvent(Container.java:2236) at java.awt.Component.dispatchEventImpl(Component.java:4891) at java.awt.Container.dispatchEventImpl(Container.java:2294) at java.awt.Component.dispatchEvent(Component.java:4713) at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4888) at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4525) at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4466) at java.awt.Container.dispatchEventImpl(Container.java:2280) at java.awt.Window.dispatchEventImpl(Window.java:2750) at java.awt.Component.dispatchEvent(Component.java:4713) at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:758) at java.awt.EventQueue.access$500(EventQueue.java:97) at java.awt.EventQueue$3.run(EventQueue.java:709) at java.awt.EventQueue$3.run(EventQueue.java:703) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86) at java.awt.EventQueue$4.run(EventQueue.java:731) at java.awt.EventQueue$4.run(EventQueue.java:729) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76) at java.awt.EventQueue.dispatchEvent(EventQueue.java:728) at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201) at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93) at java.awt.EventDispatchThread.run(EventDispatchThread.java:82) 12253 [AWT-EventQueue-0] ERROR root - [APP] Application error java.lang.ExceptionInInitializerError at com.teamdev.jxbrowser.chromium.internal.ipc.IPC.getDefault(SourceFile:43) at com.teamdev.jxbrowser.chromium.BrowserContext.<init>(SourceFile:63) at com.teamdev.jxbrowser.chromium.BrowserContext.<clinit>(SourceFile:25) at com.teamdev.jxbrowser.chromium.Browser.<init>(SourceFile:131) at com.goodsoft.stockbox.jxbrowser.TabFactory.createTab(TabFactory.java:27) at com.goodsoft.stockbox.jxbrowser.TabFactory.createFirstTab(TabFactory.java:19) at com.goodsoft.stockbox.jxbrowser.JxBrowser.initAndDisplayUI(JxBrowser.java:34) at com.goodsoft.stockbox.market.view.window.StockBoxWindowController.lambda$createMenuWindow$17(StockBoxWindowController.java:211) at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2022) at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2348) at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402) at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259) at javax.swing.AbstractButton.doClick(AbstractButton.java:376) at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:833) at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:877) at java.awt.Component.processMouseEvent(Component.java:6535) at javax.swing.JComponent.processMouseEvent(JComponent.java:3324) at java.awt.Component.processEvent(Component.java:6300) at java.awt.Container.processEvent(Container.java:2236) at java.awt.Component.dispatchEventImpl(Component.java:4891) at java.awt.Container.dispatchEventImpl(Container.java:2294) at java.awt.Component.dispatchEvent(Component.java:4713) at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4888) at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4525) at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4466) at java.awt.Container.dispatchEventImpl(Container.java:2280) at java.awt.Window.dispatchEventImpl(Window.java:2750) at java.awt.Component.dispatchEvent(Component.java:4713) at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:758) at java.awt.EventQueue.access$500(EventQueue.java:97) at java.awt.EventQueue$3.run(EventQueue.java:709) at java.awt.EventQueue$3.run(EventQueue.java:703) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86) at java.awt.EventQueue$4.run(EventQueue.java:731) at java.awt.EventQueue$4.run(EventQueue.java:729) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76) at java.awt.EventQueue.dispatchEvent(EventQueue.java:728) at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201) at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93) at java.awt.EventDispatchThread.run(EventDispatchThread.java:82) Caused by: com.teamdev.jxbrowser.chromium.internal.ChromiumExtractorException: Failed to extract chromium binaries into /var/folders/51/jhnyhq212kz_nkn_0wq5j8000000gn/T/jxbrowser-chromium-55.0.2883.87.6.12 at com.teamdev.jxbrowser.chromium.internal.ChromiumExtractor.extract(SourceFile:75) at com.teamdev.jxbrowser.chromium.internal.ipc.IPC.<init>(SourceFile:1096) at com.teamdev.jxbrowser.chromium.internal.ipc.IPC.create(SourceFile:49) at com.teamdev.jxbrowser.chromium.internal.ipc.IPC$a.<clinit>(SourceFile:39) ... 46 more Caused by: java.lang.IllegalArgumentException: The /chromium-mac.xz resource cannot be found in JAR files at com.teamdev.jxbrowser.chromium.internal.v.a(SourceFile:105) at com.teamdev.jxbrowser.chromium.internal.v.a(SourceFile:33) at com.teamdev.jxbrowser.chromium.internal.b.run(SourceFile:1054) at java.security.AccessController.doPrivileged(Native Method) at com.teamdev.jxbrowser.chromium.internal.ChromiumExtractor.extract(SourceFile:47) ... 49 more lib的依赖时,我会收到无法找到Mac资源的错误:

{{1}}

1 个答案:

答案 0 :(得分:0)

您必须在 pom 中明确添加此依赖项(无论配置文件如何):

   <dependency>
        <groupId>com.teamdev.jxbrowser</groupId>
        <artifactId>jxbrowser</artifactId>
        <version>6.12</version>
    </dependency>

根据你的要求,我不确定你是否这样做。

这个jar包含 swing 包。每个 OS 的jar都有一个包名,如下所示: com.jxbrowser.chromium.internal.res。