路径在构建文件中表示什么



pathelement表示什么?

<path id="master-classpath">
  <fileset dir="${web.dir}/WEB-INF/lib">
    <include name="*.jar"/>
  </fileset>
  <pathelement path="${build.dir}"/>
</path>

请参阅蚂蚁文档中的类似路径的结构。路径是路径的一部分。

如果您认为路径是位置列表,例如目录 - 您可以从位置或较短的路径或两者组合组合组合路径:

Path X:   a1:b2       # Two locations / one path
Path Y:           c3   # One location / one path
Path XY:  a1:b2:c3   # Three locations / one path

pathelement可以指定path(即一个或多个位置)或一个location

<path id=X">
  <pathelement path="a1:b2"/>
</path>
<path id=Y">
  <pathelement location="c3"/>
</path>

相关内容

  • 没有找到相关文章

最新更新