add mockito dependency to sonar pom.xml to fix maven-dsl build
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1822785 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
940f438eaf
commit
16c68a4f01
@ -65,6 +65,7 @@
|
|||||||
<!-- define some of the third-party or plugin-versions globally to use the same in all modules -->
|
<!-- define some of the third-party or plugin-versions globally to use the same in all modules -->
|
||||||
<xmlbeans.version>2.6.0</xmlbeans.version>
|
<xmlbeans.version>2.6.0</xmlbeans.version>
|
||||||
<junit.version>4.12</junit.version>
|
<junit.version>4.12</junit.version>
|
||||||
|
<mockito.version>2.13.0</mockito.version>
|
||||||
<maven.plugin.resources.version>3.0.1</maven.plugin.resources.version>
|
<maven.plugin.resources.version>3.0.1</maven.plugin.resources.version>
|
||||||
<maven.plugin.jar.version>3.0.1</maven.plugin.jar.version>
|
<maven.plugin.jar.version>3.0.1</maven.plugin.jar.version>
|
||||||
<maven.plugin.clean.version>3.0.0</maven.plugin.clean.version>
|
<maven.plugin.clean.version>3.0.0</maven.plugin.clean.version>
|
||||||
@ -136,6 +137,12 @@
|
|||||||
<version>${junit.version}</version>
|
<version>${junit.version}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.mockito</groupId>
|
||||||
|
<artifactId>mockito-core</artifactId>
|
||||||
|
<version>${mockito.version}</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
|
Loading…
Reference in New Issue
Block a user