I have the following task and for some reason does not match my file:
<xmltask source="nbproject/project.xml" dest="nbproject/project.xml"> <replace path="/project/configuration/data/class-path-extension/runtime-relative-path/text()" withText="ext/extensions/${extension-lib.dist.jar}.jar"/> <replace path="/project/configuration/data/class-path-extension/binary-origin/text()" withText="${original.project.dir}/dist/${extension-lib.dist.jar}.jar"/> </xmltask>
Here is the xml file I'm looking for:
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <project xmlns="http://www.netbeans.org/ns/project/1"> <type>org.netbeans.modules.apisupport.project</type> <configuration> <data xmlns="http://www.netbeans.org/ns/nb-module-project/3"> . . . <class-path-extension> <runtime-relative-path>ext/extensions/Zone_x.jar</runtime-relative-path> <binary-origin>../../Simple Marauroa Java/Zone Extension/dist/Zone_y.jar</binary-origin> </class-path-extension> </data> </configuration>
I deleted material that is not relevant for this question. Using the Xpath plugin for NetBeans in the same file shows matches for ext / extensions / Zone_x.jar and .. /../Simple Marauroa Java / Zone Extension / dist / Zone_y.jar respectively, but the task does not see them.
Any ideas?
source share