Changeset 13

Show
Ignore:
Timestamp:
11/23/08 12:01:12 (22 months ago)
Author:
omry
Message:
 
Location:
trunk/ebuild
Files:
1 added
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/ebuild/build.xml

    r12 r13  
    6969                <!-- Create class path --> 
    7070                <eclipse_cp action="libs" rootdir="${workspace}" project="${proj}" result="classpath" /> 
     71                 
    7172                <var name="build.classpath" value="" /> 
    7273                <for list="${classpath}" param="jar" delimiter=";"> 
     
    109110                                </for> 
    110111                                 
    111                                 <var name="jar.classpath" value="" /> 
    112                                 <for list="${classpath}" param="jar" delimiter=";"> 
     112                                <if> 
     113                                        <equals arg1="${export.all.jars}" arg2="false" /> 
     114                                        <then> 
     115                                                <eclipse_cp action="only_exported_libs" rootdir="${workspace}" project="${proj}" result="copy_list" /> 
     116                                                <echo>Adding exported libs to output lib dir : ${copy_list}</echo> 
     117                                        </then> 
     118                                        <else> 
     119                                                <eclipse_cp action="libs" rootdir="${workspace}" project="${proj}" result="copy_list" /> 
     120                                                <echo>Adding all libs to output lib dir : ${copy_list}</echo> 
     121                                        </else> 
     122                                </if> 
     123                                 
     124                                <for list="${copy_list}" param="jar" delimiter=";"> 
    113125                                        <sequential> 
    114126                                                <copy tofile="${build.output}/dist/lib/@{jar}" file="${workspace}@{jar}" /> 
  • trunk/ebuild/changelog.txt

    r7 r13  
    11== EBuild 1.0 == 
     223/11/2008 : Omry : Enhancement : Added support for exporting only exported jars into final result 
    2319/07/2008 : Omry : RELEASE : Initial release