maven如何正确包含依赖项

时间:2015-01-07 10:16:30

标签: java sqlite maven jfreechart

我试图找出如何使用maven,但我没有得到它。

首先我尝试了sqlite 3.8.7:

  

mvnrepository.com/artifact/org.xerial/sqlite-jdbc/3.8.7

我可以编译好但是当我尝试执行maven时找不到sqlite jar文件,所以我尝试使用:

  

mvn install:install-file

但它也没有用,所以我只使用了-cp而且我已经修复了。

其次我尝试使用jfreechart:

  

http://mvnrepository.com/artifact/jfree/jfreechart/1.0.13

我为jfreechart做了以下相同的步骤,但这次它给出了me NoClassDefFoundError.

当我手动编译时,它们都有效,但是对于maven,它不是。我错过了什么?如果我总是像sqlite一样手动添加,为什么还要使用maven?

注意:我编译为:

  

mvn compile

我打包为:

  

mvn package

最后我尝试执行:

  

java -cp target / porject.jar org.path.App

修改:

这是针对jfreechart应用程序(pom.xml) 我从mvnrepository.com

添加依赖标记
<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>org.project</groupId>
  <artifactId>ChartTest</artifactId>
  <version>1.0-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>ChartTest</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>jfree</groupId>
        <artifactId>jfreechart</artifactId>
        <version>1.0.13</version>
    </dependency>
  </dependencies>
</project>

先谢谢

3 个答案:

答案 0 :(得分:2)

使用依赖项创建jar可执行文件并将其作为独立应用程序启动所需的一切:

<build>
  <plugins>
    <plugin>
    <artifactId>maven-assembly-plugin</artifactId>
      <configuration>
        <archive>
          <manifest>
            <mainClass>com.mypackage.main.Main</mainClass>
          </manifest>
        </archive>
        <descriptorRefs>
          <descriptorRef>jar-with-dependencies</descriptorRef>
        </descriptorRefs>
      </configuration>
    </plugin>
  </plugins>
</build>

然后运行目标:

clean package assembly:single 

答案 1 :(得分:1)

您的问题是您没有在目标jar中包含您的依赖项。

将其添加到您的pom.xml:

<build>
    <plugins>
        <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>2.1</version>
            <configuration>

                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>

            </configuration>
            <executions>
                <execution>
                    <id>make-assembly</id> <!-- this is used for inheritance merges -->
                    <phase>package</phase> <!-- append to the packaging phase. -->
                    <goals>
                        <goal>attached</goal> <!-- goals == mojos -->
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

然后您可以使用命令行启动您的应用程序:

java -cp target/ChartTest-1.0-SNAPSHOT-jar-with-dependencies.jar org.path.App

答案 2 :(得分:0)

请勿在命令中使用连字符,请使用mvn packagemvn compile