我正在定义一个build.xml文件,我需要从属性文件中读取一些路径。从我的定义目标中读取它是可以的。当我尝试读取taskdef中的值时出现问题。我怎样才能做到这一点?
我有这样的事情:
<taskdef name="xjc" classname="com.sun.tools.xjc.XJCTask">
<classpath>
<fileset dir="${paths.jaxb.lib}" includes="*.jar" />
</classpath>
</taskdef>
我的“paths.jaxb.lib”是jaxb lib文件夹的路径。如何从我的paths.properties文件中获取此值?
答案 0 :(得分:0)
在<taskdef>
任务之前阅读属性文件。
如果paths.properties
是......
paths.jaxb.lib=path/to/my/jaxb/lib
...然后在build.xml
...
<!-- Loading the Java properties file sets the paths.jaxb.lib Ant property. -->
<property file="paths.properties"/>
<taskdef name="xjc" classname="com.sun.tools.xjc.XJCTask">
<classpath>
<fileset dir="${paths.jaxb.lib}" includes="*.jar" />
</classpath>
</taskdef>