Skip to content

Commit 0055d80

Browse files
nresarechipchilders
authored andcommitted
CLOUDSTACK-771: maven: add mysql version reference to enable non-snapshot builds
If you update your build to build a version with a name not ending in -SNAPSHOT, you are required to declare versions on all your depdendencies. There is already a cs.mysql.version property, this patch makes sure it is used where appropriate. Signed-off-by: Chip Childers <chip.childers@gmail.com>
1 parent 7240204 commit 0055d80

4 files changed

Lines changed: 4 additions & 0 deletions

File tree

awsapi/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,7 @@
266266
<dependency>
267267
<groupId>mysql</groupId>
268268
<artifactId>mysql-connector-java</artifactId>
269+
<version>${cs.mysql.version}</version>
269270
<scope>runtime</scope>
270271
</dependency>
271272
<dependency>

client/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@
104104
<dependency>
105105
<groupId>mysql</groupId>
106106
<artifactId>mysql-connector-java</artifactId>
107+
<version>${cs.mysql.version}</version>
107108
<scope>runtime</scope>
108109
</dependency>
109110
</dependencies>

server/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
<dependency>
4646
<groupId>mysql</groupId>
4747
<artifactId>mysql-connector-java</artifactId>
48+
<version>${cs.mysql.version}</version>
4849
<scope>provided</scope>
4950
</dependency>
5051
<dependency>

utils/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@
132132
<dependency>
133133
<groupId>mysql</groupId>
134134
<artifactId>mysql-connector-java</artifactId>
135+
<version>${cs.mysql.version}</version>
135136
<scope>test</scope>
136137
</dependency>
137138
<dependency>

0 commit comments

Comments
 (0)