Skip to content

Commit be3dcbc

Browse files
committed
DATAGEODE-238 - Apply additional polish.
Resolves gh-30.
1 parent df27c8f commit be3dcbc

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
lines changed

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ out/
55
target/
66
.gradle
77
.springBeans
8+
*.dat
89
*.iml
910
*.ipr
1011
*.iws
1112
*.log
1213
.classpath
1314
.project
1415
.settings/
15-
.idea/
1616
_site/
17+
.idea/
1718
.bak/
18-
*.dat
1919

2020
/samples/hello-world/vf.gf.dmn-events.cfg
2121
/samples/hello-world/vf.gf.dmn-license.cfg
@@ -24,4 +24,5 @@ _site/
2424
/vf.gf.dmn-license.cfg
2525

2626
BACKUP*
27+
ConfigDiskDir*
2728
newDB

spring-data-gemfire/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
</exclusions>
4949
</dependency>
5050

51-
<!-- Apache Geode -->
51+
<!-- Pivotal GemFire -->
5252
<dependency>
5353
<groupId>io.pivotal.gemfire</groupId>
5454
<artifactId>geode-core</artifactId>

spring-data-geode-distribution/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,5 @@
4141
</plugin>
4242
</plugins>
4343
</build>
44+
4445
</project>

spring-data-geode/pom.xml

+10-10
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
<url>https://projects.spring.io/spring-data-geode/spring-data-geode</url>
2020

2121
<properties>
22-
<geode.version>1.10.0</geode.version>
2322
<project.root>${basedir}/..</project.root>
23+
<geode.version>1.10.0</geode.version>
2424
</properties>
2525

2626
<dependencies>
@@ -180,13 +180,6 @@
180180
<scope>test</scope>
181181
</dependency>
182182

183-
<dependency>
184-
<groupId>org.assertj</groupId>
185-
<artifactId>assertj-core</artifactId>
186-
<version>${assertj}</version>
187-
<scope>test</scope>
188-
</dependency>
189-
190183
<dependency>
191184
<groupId>org.apache.derby</groupId>
192185
<artifactId>derbyLocale_zh_TW</artifactId>
@@ -201,16 +194,23 @@
201194
<scope>test</scope>
202195
</dependency>
203196

197+
<dependency>
198+
<groupId>org.assertj</groupId>
199+
<artifactId>assertj-core</artifactId>
200+
<version>${assertj}</version>
201+
<scope>test</scope>
202+
</dependency>
203+
204204
<dependency>
205205
<groupId>org.hamcrest</groupId>
206-
<artifactId>hamcrest-library</artifactId>
206+
<artifactId>hamcrest-core</artifactId>
207207
<version>${hamcrest}</version>
208208
<scope>test</scope>
209209
</dependency>
210210

211211
<dependency>
212212
<groupId>org.hamcrest</groupId>
213-
<artifactId>hamcrest-core</artifactId>
213+
<artifactId>hamcrest-library</artifactId>
214214
<version>${hamcrest}</version>
215215
<scope>test</scope>
216216
</dependency>

0 commit comments

Comments
 (0)