1
如何從Ant中的另一個類路徑變量中排除包含在一個類路徑變量中的jar包?我有一個myclasspath1
屬性,其中包含我要包含的所有jar和myclasspath2
以及其他jar的列表。我想獲得classpath3,其中包含classpath1中不在classpath2中的所有jar。以下是我想出了一個罐子:排除Ant中的jar flom類路徑
<path id="my.classpath1">
<pathelement path="${myClasspath1}"/>
</path>
<!-- at the end I want to get all jars concatenated into a string -->
<pathconvert pathsep="," property="my.classpath3" refid="my.classpath1">
<mapper type="flatten"/>
<map from="excluded.jar" to="" />
</pathconvert>
如何排除包括在myclasspath2
,而不是所有的罐子?
你見過[this SO post](http://stackoverflow.com/questions/10205592/exclude-jar-from-ant-classpath)嗎? –