如何:Eclipse Maven 安装带有依赖项的构建 jar
我在Eclipse中使用Eclipse Maven(m2e),我正在运行我的项目,如下所示:
我的样子是这样的:pom.xml
<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>ro.project</groupId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>ro.project</name>
<properties>
<org.springframework.version>3.1.1.RELEASE</org.springframework.version>
<org.hibernate.version>4.1.0.Final</org.hibernate.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${org.springframework.version}</version>
</dependency>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>ro.project.ProjectServer</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<dependencies>
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>1.7.0_02</version>
<scope>system</scope>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
</dependencies>
<executions>
<execution>
<id>ant-magic</id>
<phase>prepare-package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<property name="compile_classpath" refid="maven.compile.classpath" />
<property name="runtime_classpath" refid="maven.runtime.classpath" />
<property name="test_classpath" refid="maven.test.classpath" />
<property name="plugin_classpath" refid="maven.plugin.classpath" />
<ant antfile="${basedir}/clientExport.xml" target="export-all" />
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<artifactId>project-core</artifactId>
<url>http://www.project.ro</url>
</project>
在我运行maven安装后,它正在工作...
Maven 运行配置:
问题是我生成的它没有包含依赖项....如何配置以格式包含所有依赖项而不解压缩。因为似乎解压缩工作不正确....jar
pom.xml
.jar
确保包括所有罐子是可以的。我下载并将每个库添加到 的文件夹中,并且jar正在运行...所以。。我唯一的问题是:如何配置以格式添加所有依赖项?jar
/lib
pom.xml
jar
我尝试了所有方法:
assembly:assembly
assembly:single
-
assembly:single
使用我的描述符(文件),但它不起作用assemble.xml
-
maven copy dependencies
插件,但仍然不能与Eclipse Maven一起使用 -m2e
我没有解决方案...任何人都可以告诉我一种在jar中添加依赖项的正确方法吗?我不敢相信这太复杂了,我无法到处找到我问题的答案。maven
提前感谢您