I'm just using the echo task to create my manifest file:
<!-- create the manifest file (contains version info, etc. -->
<echo file="ClientManifest.mf">
Name: com/lgc/infra/
Specification-Title: "DecisionSpace client"
Specification-Vendor: "Landmark Graphics Corporation".
Implementation-Title: "DecisionSpace client"
Implementation-Version:
"${Foundation}.${Program}.${PointProd}.${Patch}.${label}"
Implementation-Vendor: "Landmark Graphics Corporation"
Specification-Version: "Tahoe"
</echo>
-----Original Message-----
From: Aarti Chandnani [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 23, 2001 2:27 PM
To: '[EMAIL PROTECTED]'
Subject: RE: create the menifest file in buildfile
I have a file called manifest.mf(which i write physically outside of ant)
and I use this as the manifest file in the jar task
Also for adding date,time etc in that file
I use a replace task
this does not repalce '=' but keps it as ':'
-----Original Message-----
From: Jiong Wei [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 23, 2001 12:06 PM
To: ant-user
Subject: create the menifest file in buildfile
in my buildfile, i need to create the manifest file as following:
--------------------
Product: Artemis
Version: 1.0
Build: 19
Date: 20010315
Time: 21:41:36
Builder: jwei@THE-BOY-BLUNDER
Product: Dynamo Integration Server
Config-Path: config
Class-Path: class/classes.jar
Required: DSS
--------------------
Seems the <propertyfile> is the task I should use, but, it will generate the
file as
-----------------
Product=Artemis
Version=1.0
...
-----------------
the separator is '=' rather than ': '
any suggestion?
really in a hurry, thanks in advance!
Jiong