Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
PhotArk M2
-
None
Description
For the next release, we need to make sure that :
- All libraries in the webapp\web-inf\lib are accounted on the LICENSE
- All referenced jars from LICENSE really is packaged with the photark webapp
Some scripts might be useful, see :
http://tuscany.apache.org/making-releases.html
Check that all jars in the distribution\lib is mentioned on the binary LICENSE
for fn in *.jar; do if grep -q $fn ../LICENSE; then "$fn"; else "$fn NOT present"; fi; done
And check that all jars that are mentioned are present
for fn in `awk '/.jar/ {if (match($0,"[a-zA-Z0-9._-]+[.]jar"))
{print substr($0, RSTART,RLENGTH) }}' ../LICENSE`; do if ls | grep -q $fn; then echo "$fn";else echo ">>> $fn NOT present"; fi; done