You are viewing a plain text version of this content. The canonical link for it is here.
Posted to photark-dev@incubator.apache.org by "Luciano Resende (JIRA)" <ji...@apache.org> on 2010/05/01 09:15:54 UTC

[jira] Created: (PHOTARK-31) Update LICENSE with current depedency list

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.


[jira] Resolved: (PHOTARK-31) Update LICENSE with current depedency list

Posted by "Luciano Resende (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PHOTARK-31?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Luciano Resende resolved PHOTARK-31.
------------------------------------

      Assignee: Luciano Resende
    Resolution: Fixed

Fixed.

> 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
>            Assignee: 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.