Use project.version for all project deps
Assigning the project.version to another variable within the pom and using that new variable to determine module dependencies was causing issues with the apache:release plugin. There is no need to reassign this to this new variable so removing it altogether.
This commit is contained in:
parent
33a6951862
commit
f16f7ee0c9
|
@ -30,7 +30,6 @@
|
|||
<packaging>jar</packaging>
|
||||
|
||||
<properties>
|
||||
<activemq.version>${project.version}</activemq.version>
|
||||
<activemq.basedir>${project.basedir}/..</activemq.basedir>
|
||||
</properties>
|
||||
|
||||
|
@ -83,12 +82,12 @@
|
|||
<dependency>
|
||||
<groupId>org.apache.activemq</groupId>
|
||||
<artifactId>activemq-server</artifactId>
|
||||
<version>${activemq.version}</version>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.activemq</groupId>
|
||||
<artifactId>activemq-jms-server</artifactId>
|
||||
<version>${activemq.version}</version>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.geronimo.specs</groupId>
|
||||
|
|
Loading…
Reference in New Issue