我正在寻找使用WAS 8.5.5。应用程序版本管理功能我想使用构建插入“Application Edition”和“Edition Descriptor”参数的清单值,以便在耳朵安装期间自动增值。你知道我怎么能命名他们吗?
例如,为了对应用程序构建ID进行增值,我使用“Implementation-Version”关键字。
答案 0 :(得分:0)
很遗憾,您无法指定版本号。在EAR本身的任何地方。但是您可以使用“wsInstalllApp”ant任务来实现自动化:
<wsInstallApp ear="${server.home.dir}/${ear}"
options="-cell ${was.cell} -node ${was.node} -server ${was.server.to.deploy} -edition ${was.application.current.edition.number}"
failonerror="true"
conntype="${remote.connection.type}"
host="${remote.host.ip}"
port="${remote.connection.port}"
user="${remote.user.id}"
password="${remote.user.password}"
/>