Hi Anjana,

you have to check the generated manifests to find out what exactly happened.

you will find a .tmpXXX file inside p2-profilegen/target.

run this shell script against the jar found inside those. then search for
that weird string within MANIFEST files( find . iname MANIFEST.MF | xargs
grep ..)

script for unzipping every jar file.

ls -1 *.jar > filelist
for filename in `cat filelist`
do
unzip $filename -d temp
mv temp unzipped/$filename
rm -rf temp/*
done



hth,
--Pradeep
_______________________________________________
Carbon-dev mailing list
[email protected]
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev

Reply via email to