I am trying to upload multiple jar files to artifactory using "mvn deploy"
command for a multi module project. Problem I am facing is generated pom files
uploaded with jar files to artifactory contains only property name as version.
Example - This is the part of jar file uploaded to artifactory for module
"configuration-entity".
When i am using this as dependency in another project I am getting error cannot
resolve dependencies
com.blah.infra.libraries:rest:jar:${rest.version}
com.blah.infra.libraries:beans:jar:${beans.version}
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.blah.nw.libraries</groupId>
<artifactId>libraries</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>configuration-entity</artifactId>
<dependencies>
<dependency>
<groupId>com.blah.infra.libraries</groupId>
<artifactId>rest</artifactId>
<version>${rest.version}</version>
</dependency>
<dependency>
<groupId>com.blah.infra.libraries</groupId>
<artifactId>beans</artifactId>
<version>${beans.version}</version>
</dependency>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]