Skip to content

Commit 85c67b5

Browse files
author
Zhen Li
authored
Merge pull request #192 from zhenlineo/1.0-fix-compilation-error
Fix maven dependency problem
2 parents 95fd420 + 10d3505 commit 85c67b5

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

driver/pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,12 @@
3333
<!-- Test dependencies -->
3434
<dependency>
3535
<groupId>org.hamcrest</groupId>
36-
<artifactId>hamcrest-all</artifactId>
36+
<artifactId>hamcrest-library</artifactId>
37+
<scope>test</scope>
38+
</dependency>
39+
<dependency>
40+
<groupId>org.hamcrest</groupId>
41+
<artifactId>hamcrest-core</artifactId>
3742
<scope>test</scope>
3843
</dependency>
3944
<dependency>

examples/pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,12 @@
4646
</dependency>
4747
<dependency>
4848
<groupId>org.hamcrest</groupId>
49-
<artifactId>hamcrest-all</artifactId>
49+
<artifactId>hamcrest-library</artifactId>
50+
<scope>test</scope>
51+
</dependency>
52+
<dependency>
53+
<groupId>org.hamcrest</groupId>
54+
<artifactId>hamcrest-core</artifactId>
5055
<scope>test</scope>
5156
</dependency>
5257
<dependency>

pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,13 @@
4949
<!-- Test dependencies -->
5050
<dependency>
5151
<groupId>org.hamcrest</groupId>
52-
<artifactId>hamcrest-all</artifactId>
52+
<artifactId>hamcrest-library</artifactId>
53+
<version>1.3</version>
54+
<scope>test</scope>
55+
</dependency>
56+
<dependency>
57+
<groupId>org.hamcrest</groupId>
58+
<artifactId>hamcrest-core</artifactId>
5359
<version>1.3</version>
5460
<scope>test</scope>
5561
</dependency>

0 commit comments

Comments
 (0)