Skip to content

Commit 8e2453c

Browse files
committed
#12 - Change Mockito pom dependency to be provided scope
1 parent 9ae461a commit 8e2453c

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<groupId>org.avaje.ebeanorm</groupId>
1111
<artifactId>avaje-ebeanorm-mocker</artifactId>
12-
<version>7.12.2-SNAPSHOT</version>
12+
<version>7.13.1-SNAPSHOT</version>
1313
<name>avaje-ebeanorm-mocker</name>
1414

1515
<description>Ability to set a Mockito mock EbeanServer as 'default' EbeanServer</description>
@@ -27,10 +27,15 @@
2727

2828
<dependencies>
2929

30+
<!--
31+
Provided scope so expecting mockito dependency to be
32+
explicitly specified in your project pom
33+
-->
3034
<dependency>
3135
<groupId>org.mockito</groupId>
3236
<artifactId>mockito-core</artifactId>
3337
<version>1.10.19</version>
38+
<scope>provided</scope>
3439
</dependency>
3540

3641
<!--
@@ -40,7 +45,7 @@
4045
<dependency>
4146
<groupId>org.avaje.ebeanorm</groupId>
4247
<artifactId>avaje-ebeanorm</artifactId>
43-
<version>7.12.1</version>
48+
<version>7.13.1</version>
4449
<scope>provided</scope>
4550
</dependency>
4651

0 commit comments

Comments
 (0)