Update LICENSE with current depedency list
------------------------------------------

                 Key: PHOTARK-31
                 URL: https://issues.apache.org/jira/browse/PHOTARK-31
             Project: PhotArk
          Issue Type: Bug
          Components: Build Infrastructure
    Affects Versions: PhotArk M2
            Reporter: Luciano Resende
             Fix For: PhotArk M2


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




-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to