包括从pom.xml到应用程序包的应用程序版本号

时间:2013-04-01 06:15:28

标签: java maven build version

每个pom.xml都有:

<groupId>com.vendor</groupId>
<artifactId>product</artifactId>
<version>1.0.13.0-dev</version>  <!-- THIS FIELD -->
<packaging>war</packaging>

version篇对于应用程序非常有用,因此用户可以查看和报告它们。

但我不喜欢代码重复,并寻找一种避免将带有版本信息的属性文件放到VCS(Git / SVN)的方法,因为每次我碰到版本时我必须提交到两个地方(pom.xml和{{1 }})。

我可以从Java应用程序中以编程方式提供version.properties版本属性吗?

4 个答案:

答案 0 :(得分:9)

找到一个使用maven-war-plugin更优雅的解决方案。

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-war-plugin</artifactId>
    <version>2.3</version>
    <configuration>
       <webResources>
           <resource>
               <targetPath>WEB-INF/views/jsp</targetPath>
               <directory>${basedir}/src/main/webapp/WEB-INF/views/jsp</directory>
               <includes>
                  <include>footer.jsp</include>
               </includes>
               <filtering>true</filtering>
          </resource>
      </webResources>
  </configuration>
</plugin>

footer.jsp然后:

Application Version: ${project.version}

答案 1 :(得分:7)

我的个人制作解决方案。

<强>的pom.xml

<?xml version="1.0" encoding="utf-8"?>
<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">

    <version>1.0.13.0-dev</version>

    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
            </resource>
        </resources>
     ...

<强> base.jsp

<%@taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<!DOCTYPE html>
<html>
<head></head>
<body>
   <a href='<c:url value="/"/>'>
     <spring:eval expression="@props.getProperty('version')"/>
   </a>
   <jsp:include page="${contentPage}" />
</body>
</html>

<强> proj.properties

version=${project.version}

<强>的applicationContext.xml

<bean id="props" class="org.springframework.beans.factory.config.PropertiesFactoryBean" autowire="byName" >
    <property name="location" value="classpath:proj.properties"/>
</bean>

<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="location" value="classpath:proj.properties"/>
</bean>

或只是

<util:properties id="props" location="classpath:proj.properties"/>

答案 2 :(得分:6)

查看Maven Resources Plugin。在version.properties(应位于resources文件夹中)中,定义一行version=${project.version}。确保打开插件的过滤(所有这些都在上面的链接中详细描述),你应该好好去!

只需运行mvn resources:resources(或mvn compile)并检查生成的文件。

答案 3 :(得分:3)

您只需配置maven-war-plugin, maven-jar-plugin, maven-ear-plugin,如下所示:

 <plugin>
   <groupId>org.apache.maven.plugins</groupId>
   <artifactId>maven-war-plugin</artifactId>
   <version>${maven-war-plugin.version}</version>
   <configuration>
     <archive>
       <addMavenDescriptor>true</addMavenDescriptor>
       <index>true</index>
       <manifest>
         <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
         <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
       </manifest>
       <manifestEntries>
          <artifactId>${project.artifactId}</artifactId>
          <groupId>${project.groupId}</groupId>
          <version>${project.version}</version>
       </manifestEntries>
     </archive>
   </configuration>
 </plugin>

manifest.mf can be done using jacabi.

中读取信息