3rdparty.property
xerces.version=1.0
i have this property file and i want to read it's contents but i was unable to read.
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
<configuration>
<files>
<file>3rdparty.properties</file>
<echo>foo is "${xerces.version}"</echo>
</files>
</configuration>
</execution>
</executions>
</plugin>
log file shows that it has error. the error is
The project com.CAPMOnline:IDLUtils:1608.0.11 (C:\srathaworkspace\IDLUtils\pom.xml) has 1 errors
[ERROR] 'dependencies.dependency.version' for com.3rdParty:xerces:jar must be a valid version but is '${xerces.version}'. @ com.CAPMOnline:IDLUtils:[unknown-version], C:\srathaworkspace\IDLUtils\pom.xml, line 22, column 13