• Even Defect is defect...

    By Sjef Bosman 5 years ago

    Bug

    • By Sjef Bosman 5 years ago

      And all of a sudden it works… Since I cannot edit my earlier post, I'll add a reply.

      My real defect is with this plugin, I get the following result from an ANT script:

      Buildfile: E:\notesdata\workspace\bosman1_2fBOSMAN\Product.ntf\ProductBuild.xml
      
      main:
      [eclipseexport] EclipseFileList.getFileResources: dir = E:\notesdata\workspace\bosman1_2fBOSMAN\Product.ntf\${project}\WebContent\WEB-INF
      [eclipseexport] EclipseFileList.getFileResources: relativePath = WebContent/WEB-INF
      [eclipseexport] EclipseFileList.getFileResources: WebContent/WEB-INF/ProductBuild.properties does not exist.
      BUILD SUCCESSFUL
      Total time: 264 milliseconds
      
      • By Sjef Bosman 5 years ago

        My ANT script:

        <?xml version="1.0" encoding="UTF-8"?>
        <project name="Product" default="main" basedir=".">
            <taskdef name="eclipseexport" classname="com.ibm.designer.extensibility.copyfile.anttasks.ExportTask"/>
            <property file="copyfile.properties"/>
            <target name="main">
                <eclipseexport todir="${export.todir}" project="${project}" overwriteolder="yes" createlog="yes" debug="yes">
                    <filelist dir="${project}/WebContent/WEB-INF" files="ProductBuild.properties"/>
                </eclipseexport>
            </target>
        </project>
        <!--buildnumber file="ProductBuild.properties"/-->
        

        and I can assure you that the ProductBuild.properties file exists.