2012-11-27 2 views

답변

3

WebLogic의 경우 응용 프로그램 버전은 매니페스트 파일의 Weblogic-Application-Version 속성에 있습니다.

<manifest file="${dist.dir}/MANIFEST.MF"> 
     <attribute name="Created-By" value="${user.name}" /> 
     <attribute name="Created-On" value="${build.timestamp}" /> 
     <attribute name="Ant-Version" value="${ant.version}" /> 
     <attribute name="Java-Version" value="${ant.java.version}" /> 
     <attribute name="Weblogic-Application-Version" value="${project.version}" /> 
    </manifest> 
2

나는 매니페스트 파일을 증가

Manifest-Version: 1.0 
Class-Path: 
Created-By: Ronald 
Weblogic-Application-Version: v1 

은 SRC/META-INF/MANIFEST.MF에 매니페스트 파일을 만들고 파일 내용에 배치 배치했다. Pro v1, v2 등을 변경하여 버전을 변경할 수 있습니다.

자세한 내용을 보려면 다음 링크를 확인하십시오.

http://andrejusb.blogspot.com/2011/12/how-to-set-ear-version-for-adf.html

관련 문제