我使用Eclipse的Maven(M2E)在Eclipse中,我跑我的项目是这样的:
我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
的/lib
文件夹和罐子正在运行...所以...我唯一的问题是:如何配置pom.xml
以加入我的所有依赖jar
格式?
我尝试了所有方法:
-
assembly:assembly
-
assembly:single
-
assembly:single
用我的描述符(一个assemble.xml
文件),但它不工作 -
maven copy dependencies
插件,但仍无法与Eclipse的Maven的工作-m2e
我出的解决方案......谁能告诉我一个正确的方式来增加罐中我的依赖呢? 我不能相信, maven
是如此复杂,我无法发现到处都是回答我的问题..
先感谢您