maven如何正确包含依赖
maven how to include dependencies correctly
我试图弄清楚如何使用 maven,但我没有明白。
首先我从 :
尝试了 sqlite 3.8.7
mvnrepository.com/artifact/org.xerial/sqlite-jdbc/3.8.7
我可以很好地编译但是当我尝试执行 maven 时没有找到 sqlite jar 文件,所以我尝试使用:
mvn install:install-file
但它也不起作用,所以我只使用了 -cp
并且我已经修复了。
其次,我尝试使用来自 :
的 jfreechart
我在下面对 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>
提前致谢
不要在命令中使用连字符,使用 mvn package
和 mvn compile
你的问题是你没有在你的目标 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
使用依赖项创建 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
我试图弄清楚如何使用 maven,但我没有明白。
首先我从 :
尝试了 sqlite 3.8.7mvnrepository.com/artifact/org.xerial/sqlite-jdbc/3.8.7
我可以很好地编译但是当我尝试执行 maven 时没有找到 sqlite jar 文件,所以我尝试使用:
mvn install:install-file
但它也不起作用,所以我只使用了 -cp
并且我已经修复了。
其次,我尝试使用来自 :
的 jfreechart我在下面对 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>
提前致谢
不要在命令中使用连字符,使用 mvn package
和 mvn compile
你的问题是你没有在你的目标 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
使用依赖项创建 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