abhishek24509 / aribaweb

Automatically exported from code.google.com/p/aribaweb
Apache License 2.0
0 stars 0 forks source link

resources fileset definition in build-common #82

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
when I overide the ${src.dir} property, the application doesn't run.

A little research in the build-common.xml revealed this fileset definition

    <fileset id="jar.resources" dir="${basedir}" excludes="build/">
        <patternset refid="jar.resource.patterns"/>
        <exclude name="${src.resource.pattern}"/>
    </fileset>

This means

<property name="src.dir" location="src"/>

in my build file will result in .awl files packaged in the wrong folder.

Can this be modified so it uses ${src.dir} which will fix this problem.

This did work

    <fileset id="jar.resources" dir="${src.dir}" excludes="build/">
        <patternset refid="jar.resource.patterns"/>
        <exclude name="${src.resource.pattern}"/>
    </fileset> 

Original issue reported on code.google.com by farouk.a...@gmail.com on 4 Oct 2010 at 5:20