如何在清单文件中写?

时间:2014-08-11 13:55:32

标签: java maven manifest pom.xml

我的清单文件未更新,我使用插件maven-war-plugin编写,但没有任何反应,如果我更改清单文件目录的名称,我在打包时遇到错误manifest file not found,但当我把它放在正确的地方时没有任何反应,文件的内容没有改变。

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-war-plugin</artifactId>
    <version>2.4</version>
    <configuration>
        <archive>
          <addMavenDescriptor/>
          <compress/>
          <forced/>
          <index/>
          <manifest>
            <addClasspath/>
            <addDefaultImplementationEntries/>
            <addDefaultSpecificationEntries/>
            <addExtensions/>
            <classpathLayoutType/>
            <classpathMavenRepositoryLayout/>
            <classpathPrefix/>
            <customClasspathLayout/>
            <mainClass/>
            <packageName/>
          </manifest>
          <manifestEntries>
            <key>value</key>
          </manifestEntries>
          <manifestFile>src/main/webapp/META-INF/test/MANIFEST.MF</manifestFile>
          <pomPropertiesFile/>
        </archive>
    </configuration>                
</plugin>

我的清单文件的内容是:

    Manifest-Version: 1.0

任何想法,为什么它不起作用或如何正确完成?

2 个答案:

答案 0 :(得分:1)

不要使用空标签。 您应该将boolean参数设置为true:

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

请参阅official doc

答案 1 :(得分:0)

整个解决方案:

在你的pom.xml文件中添加maven war插件或其配置中支持archive标签的其他插件:

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <version>2.4</version>
            <configuration>
            <archive>
                <manifest>
                    <addClasspath>true</addClasspath>
                </manifest>
                <manifestEntries>
                    <Build-Time>${maven.build.timestamp}</Build-Time>
                    <Build-Host>${agent.name}</Build-Host>
                    <Build-User>${user.name}</Build-User>
                    <Build-Maven>Maven ${maven.version}</Build-Maven>
                    <Build-Java>${java.version}</Build-Java>
                    <Build-OS>${os.name}</Build-OS>
                    <Build-Label>${project.version}</Build-Label>
                    <Build-Path>${basedir}</Build-Path>
                </manifestEntries>
                <manifestFile>src/main/webapp/META-INF/MANIFEST.MF</manifestFile>
            </archive>
        </configuration>
        </plugin>

我们也可以通过添加pom配置的标签属性来指定构建时间的格式:

<properties>
    <maven.build.timestamp.format>dd/MM/yyyy</maven.build.timestamp.format>
</properties>

每次构建后,这些属性会自动写入war内的Manifest文件中:

    Manifest-Version: 1.0
    Build-Time: 15/09/2014
    Build-Java: 1.7.0_60
    Class-Path: commons-codec-1.9.jar 
     javax.mail-1.5.0.jar activation-1.1.jar joda-time-2.3.jar spring-ldap
     -core-2.0.1.RELEASE.jar spring-data-commons-1.6.1.RELEASE.jar jcl-ove
     r-slf4j-1.7.1.jar
    Built-By: aXSEDZ
    Created-By: Apache Maven
    Build-Host: 
    Build-Path: C:\WSLocal\5portal\5portalweb
    Build-OS: Windows 7
    Build-Jdk: 1.7.0_60
    Build-Maven: Maven null
    Build-Label: 0.0.5-SNAPSHOT
    Build-User: aXSEDZ
    Archiver-Version: Plexus Archiver

之后将文件读作资源文件,在我的情况下我访问它会抛出一个弹簧上下文:

    Properties props = new Properties();
    try {
        WebApplicationContext webAppContext = ContextLoaderListener.getCurrentWebApplicationContext();
        if (webAppContext != null) {
            InputStream inputStream = webAppContext.getServletContext().getResourceAsStream("/META-INF/MANIFEST.MF");
            props.load(inputStream);
        }
    } catch (IOException e) {

    }