こんにちは、これは私の pom ファイルです
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>mycompany.com</groupId>
<artifactId>mercury</artifactId>
<version>1249</version>
</parent>
<groupId>mycompany.com.tools.mm</groupId>
<artifactId>parent</artifactId>
<version>1249</version>
<packaging>pom</packaging>
<name>parent</name>
<description>The parent to all MM projects</description>
<properties>
<mercury.version>@product.version@</mercury.version>
<abc.version>7.0</abc.version>
<metamodel.test>true</metamodel.test>
</properties>
</project>
antでabc.versionの値を取得したい>このコードを書いています
<artifact:pom id="mypom" file="C:\work\build\pom.template.xml" />
<echo>The version is ${mypom.properties.version}</echo>
しかし、それは機能していません。誰か助けてください