| Problem encountered with <mapper > | Problem encountered with <mapper > 2003-03-24 - By Alex Zhao
Hi,
I am working on a build.xml file in which I'd like to check that certain dependent files are up to date with respect to its source. I am using Ant 1.5.2 on Window 2000.
The mapper tag essentially tries to find the generated Local interface of some EJB's. Everything seems to work except a property associated with directory ${gen.src.dir}. Unless I "hardcode" it, i.e., put "C:\\topdir\\subdir", nothing works.
I tried:
<property name="gen.src.dir" value="topdir${file.separator}subdir"/> or <property name="gen.src.dir" value="topdir\${file.separator}subdir"/> and <property name="gen.src.dir" value="topdir\\\${file.separator}subdir"/>
In each case, the "\" between topdir and subdir gets eaten and consequently causes the mapper not finding files it should find.
<mapper type="regexp" from="^(.*)\${file.separator}server\${file.separator}(.* )Bean.java" to="${gen.src.dir}\${file.separator}\1\${file.separator}spi \${file.separator}\2Local.java"/>
Please help.
-Alex
|
|
 |