If I did in maven.xml:
<ant:property file="version-info.properties"/>
And then in project.xml:
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>${commons_logging_version}</version>
</dependency>Should this work? The dependency downloading is seeing a null value for the version. I have seen the following work:
<dependency>
<groupId>geronimo</groupId>
<artifactId>geronimo-kernel</artifactId>
<version>${pom.currentVersion}</version>
</dependency>But is that because its a pom variable?
-- barry kaplan [EMAIL PROTECTED]
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
