1
pathelement
是什麼意思?pathelement在構建文件中表示什麼?
<path id="master-classpath">
<fileset dir="${web.dir}/WEB-INF/lib">
<include name="*.jar"/>
</fileset>
<pathelement path="${build.dir}"/>
</path>
pathelement
是什麼意思?pathelement在構建文件中表示什麼?
<path id="master-classpath">
<fileset dir="${web.dir}/WEB-INF/lib">
<include name="*.jar"/>
</fileset>
<pathelement path="${build.dir}"/>
</path>
請參閱Ant文檔中的path-like structures。一個pathelement是一個路徑的一部分。
如果您將路徑視爲位置列表 - 例如,目錄 - 你可以構成一個路徑輸出的位置,或者更短的路徑,或兩者的組合:
Path X: a\1:b\2 # Two locations/one path
Path Y: c\3 # One location/one path
Path XY: a\1:b\2:c\3 # Three locations/one path
甲pathelement
可以指定path
(即,一個或多個位置),或者一個單個location
:
<path id=X">
<pathelement path="a\1:b\2"/>
</path>
<path id=Y">
<pathelement location="c\3"/>
</path>