如何使用 maven 将类路径添加到清单文件

2022-09-03 12:14:42

当使用maven-jar-plugin
时,我想将条目添加到Manifest.mf
,因此它将包含:
Class-Path:。
当我将此条目添加到Pom时:

<Class-Path>.</Class-Path> 

它将创建具有所有依赖项的
类路径,如:
类路径:。jar1name.jar jar2name.jar 等
,而不仅仅是
Class-Path: .
有没有办法避免maven将所有jar名称添加到Class-Path?
谢谢

    <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <configuration>
                <archive>
                    <manifest>
                        <addClasspath>true</addClasspath>
                    </manifest>
                    <manifestEntries>
                        <Built-By>Me</Built-By>
            <Class-Path>.</Class-Path> 
                    </manifestEntries>
                </archive>
            </configuration>
        </plugin>

答案 1

这做了诀窍
省略 addClasspath 并添加 manifestEntries
现在,log4j.properties 可以驻留在 jar 之外 - 并且仍然可以找到...

                <manifest>
                    <addClasspath>true</addClasspath>
                </manifest>

这是有效的:

    <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <configuration>
                <archive>
                    <manifestEntries>
                        <Built-By>Me</Built-By>
             <Class-Path>.</Class-Path>
                    </manifestEntries>
                </archive>
            </configuration>
        </plugin>

输出:

 Manifest-Version: 1.0
 Archiver-Version: Plexus Archiver
 Created-By: Apache Maven
 Build-Jdk: 1.6.0_45
 Built-By: Me
 Class-Path: .

答案 2

推荐