Skip to content

Commit 18dd92e

Browse files
committed
minor pom cleanup
1 parent e46ce34 commit 18dd92e

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

lightblue-ldap-integration-test/pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@
3030

3131
<artifactId>lightblue-ldap-integration-test</artifactId>
3232

33+
<properties>
34+
<lightblue.mongo.version>1.3.0-SNAPSHOT</lightblue.mongo.version>
35+
</properties>
36+
3337
<dependencies>
3438
<dependency>
3539
<groupId>com.redhat.lightblue.ldap</groupId>
@@ -45,13 +49,13 @@
4549
<dependency>
4650
<groupId>com.redhat.lightblue.mongo</groupId>
4751
<artifactId>mongo-config</artifactId>
48-
<version>1.3.0-SNAPSHOT</version>
52+
<version>${lightblue.mongo.version}</version>
4953
<scope>test</scope>
5054
</dependency>
5155
<dependency>
5256
<groupId>com.redhat.lightblue.mongo</groupId>
5357
<artifactId>mongo-test</artifactId>
54-
<version>1.3.0-SNAPSHOT</version>
58+
<version>${lightblue.mongo.version}</version>
5559
<scope>test</scope>
5660
</dependency>
5761
</dependencies>

pom.xml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,17 @@
3535
<packaging>pom</packaging>
3636

3737
<properties>
38+
<!-- Lightblue Core -->
3839
<lightblue-core.version>1.3.0-SNAPSHOT</lightblue-core.version>
3940

41+
<!-- 3rd Party -->
42+
<unboundid.version>2.3.8</unboundid.version>
43+
<hystrix.version>1.3.16</hystrix.version>
4044
<slf4j.version>1.7.7</slf4j.version>
45+
46+
<!-- Test -->
47+
<junit.version>4.11</junit.version>
48+
<mockito.version>1.10.8</mockito.version>
4149
</properties>
4250

4351
<modules>
@@ -129,19 +137,19 @@
129137
<dependency>
130138
<groupId>com.unboundid</groupId>
131139
<artifactId>unboundid-ldapsdk</artifactId>
132-
<version>2.3.7</version>
140+
<version>${unboundid.version}</version>
133141
</dependency>
134142
<dependency>
135143
<groupId>com.netflix.hystrix</groupId>
136144
<artifactId>hystrix-core</artifactId>
137-
<version>1.3.16</version>
145+
<version>${hystrix.version}</version>
138146
</dependency>
139147

140148
<!-- Test -->
141149
<dependency>
142150
<groupId>junit</groupId>
143151
<artifactId>junit</artifactId>
144-
<version>4.11</version>
152+
<version>${junit.version}</version>
145153
<scope>test</scope>
146154
</dependency>
147155
<dependency>
@@ -153,7 +161,7 @@
153161
<dependency>
154162
<groupId>org.mockito</groupId>
155163
<artifactId>mockito-core</artifactId>
156-
<version>1.10.8</version>
164+
<version>${mockito.version}</version>
157165
<scope>test</scope>
158166
</dependency>
159167
</dependencies>

0 commit comments

Comments
 (0)