2010-04-06 73 views
15

這是我的POM文件:Maven的組裝插件不符合系統範圍添加依賴

<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/maven-v4_0_0.xsd"> 
    <modelVersion>4.0.0</modelVersion> 
    <groupId>com.sia.g7</groupId> 
    <artifactId>sia</artifactId> 
    <packaging>jar</packaging> 
    <version>1.0-SNAPSHOT</version> 
    <name>sia</name> 
    <url>http://maven.apache.org</url> 
    <dependencies> 
    <dependency> 
     <groupId>log4j</groupId> 
     <artifactId>log4j</artifactId> 
     <version>1.2.12</version> 
    </dependency> 
<dependency> 
    <groupId>commons-math</groupId> 
    <artifactId>commons-math</artifactId> 
    <version>1.2</version> 
</dependency> 
    <dependency> 
     <groupId>junit</groupId> 
     <artifactId>junit</artifactId> 
     <version>4.8.1</version> 
     <scope>test</scope> 
    </dependency> 

    <dependency> 
     <groupId>jmathplot</groupId> 
     <artifactId>jmathplot</artifactId> 
     <version>1.0</version> 
     <scope>system</scope> 
     <systemPath>${project.basedir}/lib/jmathplot.jar</systemPath> 
    </dependency> 

    <dependency> 
     <groupId>jgraphx</groupId> 
     <artifactId>jgraphx</artifactId> 
     <version>1.0</version> 
     <scope>system</scope> 
     <systemPath>${project.basedir}/lib/jgraphx.jar</systemPath> 
    </dependency> 

    </dependencies> 
<build> 
    <plugins> 
    <plugin> 
     <groupId>org.apache.maven.plugins</groupId> 
     <artifactId>maven-compiler-plugin</artifactId> 
     <version>2.0.2</version> 
     <configuration> 
     <source>1.6</source> 
     <target>1.6</target> 
     </configuration> 
    </plugin> 
    <plugin> 
     <artifactId>maven-assembly-plugin</artifactId> 
     <configuration> 
     <descriptorRefs> 
      <descriptorRef>jar-with-dependencies</descriptorRef> 
     </descriptorRefs> 
     <appendAssemblyId>false</appendAssemblyId> 
     <archive> 
      <manifest> 
      <mainClass>com.sia.g7.AbstractSimulation</mainClass> 
      </manifest> 
     </archive> 
     </configuration> 

    </plugin> 
    </plugins> 

</build> 
</project> 

當我運行jar我得到:

Exception in thread "main" java.lang.NoClassDefFoundError: com/mxgraph/swing/mxGraphComponent 

這部分jgraphx依賴。 我錯過了什麼?

回答

11

是的,這是你不應該濫用範圍依賴關係(這在全球範圍內是一個不好的做法)的原因之一,並且這個問題已經在SO(here, )上多次提及。我提出了一個在this answer中以「乾淨」方式處理項目相關依賴項的解決方案。

1

它首先不能是系統範圍。這是你問題的根源。 將您的依賴項安裝/部署到存儲庫中,並使其成爲正常的編譯(或運行時)作用域依賴項。

2

您應該從這些依賴關係中刪除<scope>system</scope>子句。 當範圍設置爲系統時,意味着工件始終可用,因此jar-with-dependencies不包含它。

7

您可以通過添加此dependencySet到您的裝配文件描述符

<dependencySet> 
    <outputDirectory>/</outputDirectory> 
    <unpack>true</unpack> 
    <scope>system</scope> 
</dependencySet> 

這個裝配描述符添加所有的依賴,包括系統做範圍的

<assembly 
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> 
<id>jar-with-all-dependencies</id> 
<formats> 
    <format>jar</format> 
</formats> 
<includeBaseDirectory>false</includeBaseDirectory> 
<dependencySets> 
    <dependencySet> 
     <outputDirectory>/</outputDirectory> 
     <useProjectArtifact>true</useProjectArtifact> 
     <unpack>true</unpack> 
     <scope>runtime</scope> 
    </dependencySet> 
    <dependencySet> 
     <outputDirectory>/</outputDirectory> 
     <unpack>true</unpack> 
     <scope>system</scope> 
    </dependencySet> 
</dependencySets> 

</assembly> 
-2

包裝打開罐子,並把它添加到的src/main /資源。