我正在尝试使用以下代码在maven2中的MANIFEST.MF中添加类路径,但无法添加它。
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<manifest>
<addClasspath>true</addClasspath>
<useUniqueVersions>false</useUniqueVersions>
</manifest>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<finalName>iHubServiceImpl</finalName>
</build>
你能帮我吗?
更新:在更新的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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.adp.ihub</groupId>
<artifactId>PreFinal</artifactId>
<version>1</version>
</parent>
<groupId>com.adp.ihub</groupId>
<artifactId>iHubCommon</artifactId>
<version>1</version>
<packaging>jar</packaging>
<name>iHubCommon</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathLayoutType>simple</classpathLayoutType>
</manifest>
<manifestEntries>
<mode>development</mode>
<url>${pom.url}</url>
<key>value</key>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<!-- Use the jar plugin for plugin management configuration to take effect -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
</plugins>
<sourceDirectory>${basedir}/src</sourceDirectory>
<resources>
<resource>
<directory>${basedir}/src</directory>
<excludes>
<exclude>**/*.java</exclude>
<exclude>**/pom*</exclude>
</excludes>
</resource>
</resources>
<finalName>iHubCommon</finalName>
</build>
<dependencies>
<dependency>
<groupId>com.adp.ihub</groupId>
<artifactId>BizLogic3</artifactId>
<version>1</version>
<scope>system</scope>
<systemPath>${PWD}/iHUBCM/Environment/lib/BizLogic3.jar</systemPath>
</dependency>
<dependency>
<groupId>com.adp.ihub</groupId>
<artifactId>EncryptionAPI-jdk15-0.4</artifactId>
<version>1</version>
<scope>system</scope>
<systemPath>${PWD}/iHUBCM/Environment/lib/EncryptionAPI-jdk15-0.4.jar</systemPath>
</dependency>
<dependency>
<groupId>com.adp.ihub</groupId>
<artifactId>adpbod-1.0</artifactId>
<version>1</version>
<scope>system</scope>
<systemPath>${PWD}/iHUBCM/Environment/lib/adpbod-1.0.jar</systemPath>
</dependency>
</dependencies>
</project>
但我仍然没有在manifest.mf中获取条目。怎么了?
答案 0 :(得分:4)
要Add a Class-Path Entry to the Manifest,您需要通过添加具有适当配置的<archive>
元素来告诉Maven Jar插件。来自Manifest customization(略微适应):
自定义清单
可以更改默认清单 使用存档配置 元件。下面你会发现一些 配置选项 可用。有关更多信息,请参阅Maven Archiver参考。这个版本 Maven JAR插件使用Maven Archiver 2.4。
<project> ... <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3.1</version> <configuration> <archive> <index>true</index> <manifest> <addClasspath>true</addClasspath> </manifest> <manifestEntries> <mode>development</mode> <url>${pom.url}</url> <key>value</key> </manifestEntries> </archive> </configuration> ... </plugin> </plugins> </build> ... </project>
但是你的问题是你(ab)使用邪恶 system
scope,根据定义它是始终可用的依赖项和[是] ]没有在存储库中查找。所以不要指望Maven将它们放在Manifest.mf的Class-Path条目中。
我想I'll never repeat enough人们不应该使用它system
范围内的依赖关系,但它们的使用是strongly discouraged:
system :在项目生命周期的某个阶段需要此依赖项,但这是系统特定的。 不建议使用此范围:这被认为是一种“高级”功能,只有在您真正了解其使用的所有后果时才能使用,如果实际上无法量化则可能非常困难。根据定义,此范围使您的构建不可移植。在某些边缘情况下可能是必要的。系统范围包括
<systemPath>
元素,该元素指向此依赖关系在本地计算机上的物理位置。因此,它用于指代预期存在于给定本地机器上而不是存储库中的某个工件;并且其路径可能因机器而异。systemPath
元素可以在其路径中引用环境变量:例如${JAVA_HOME}
。
将jar安装在本地存储库中,或使用公司存储库,或使用file based存储库。但请勿使用system
范围。
答案 1 :(得分:0)
maven compiler plugin没有谈到名为“manifest”的配置属性,您可能想要使用maven-jar-plugin。请参阅this link了解如何操作。
编辑: 当您使用pluginManagement配置插件时,您需要在元素中实际使用插件。 请参阅documenttation
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
<manifestEntries>
<mode>development</mode>
<url>${pom.url}</url>
<key>value</key>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<!-- Use the jar plugin for plugin management configuration to take effect -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
</plugins>
</build>
在控制台类型上:
$>mvn jar:jar
编辑使用此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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.adp.ihub</groupId>
<artifactId>PreFinal</artifactId>
<version>1</version>
<packaging>jar</packaging>
<name>PreFinal</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>
<!-- !!! ADD YOUR DEPENDENCIES HERE !!! -->
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
<manifestEntries>
<mode>development</mode>
<url>${pom.url}</url>
<key>value</key>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>