notes/pl/java/tools/ivy/pathconvert.txt
Ihar Hancharenka 5dff80e88e first
2023-03-27 16:52:17 +03:00

23 строки
776 B
Plaintext

2011
http://whileonefork.blogspot.com/2011/05/how-to-print-ivys-cachepath-one.html
samples
<ivy:cachepath pathid="compile.lasspath" .../>
<!-- compile.classpath -->
<pathconvert pathsep="${line.separator} "
property="list.classpath"
refid="compile.classpath"/>
<echo>LIST: ${list.classpath}</echo>
<pathconvert property="manifest.classpath" pathsep=" ">
<path refid="manifest.cp"/>
<chainedmapper>
<flattenmapper/>
<firstmatchmapper>
<globmapper from="*-${current.platform}-${nlp.core.version}.jar" to="*.jar"/>
<identitymapper/>
</firstmatchmapper>
</chainedmapper>
</pathconvert>