批量更新清单.使用maven查找现有的jar



我想添加一个自定义键/值对到MANIFEST。war项目中几个现有jar文件的MF(这些jar文件不是项目依赖项)。

我已经可以使用ant任务打包/重新打包这些jar了。

我读到关于"manifest"任务,我如何将该任务应用到文件集(如果有方法)?

这是我在StackOverflow的第一个答案。希望它适合你:)

我是这样做的:

<target name="xxx.modifyManifests">
    <echo message="Modifying jar manifests to add trusted-library" />
    <apply executable="jar">
        <arg value="umf" />
        <arg line="${xxx.resources}/manifest/custom_manifest.mf" />
        <srcfile />
        <fileset dir="${xxx.target}/applets" includes="*.jar" />
    </apply>
</target>

调用很简单,使用maven-antrun-plugin:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-antrun-plugin</artifactId>
    <executions>
        <execution>
            <id>xxx.modifyManifests</id>
            <phase>compile</phase>
            <configuration>
                <target>
                    <property environment="windows" />
                    <property name="xxx.resources"
                        value="${project.build.directory}/../src/main/resources" />
                    <property name="xxx.target"
                        value="${project.build.directory}/${project.artifactId}-${project.version}" />
                    <ant antfile="${basedir}/build.xml">
                        <target name="xxx.modifyManifests" />
                    </ant>
                </target>
            </configuration>
            <goals>
                <goal>run</goal>
            </goals>
        </execution>
    </executions>
</plugin>

和我的custom_manifest。Mf是这样的:

Trusted-Only: true
Trusted-Library: true

相关内容

  • 没有找到相关文章

最新更新