Merge pull request #8 from justwrote/master

Mockito should be a test dependency
This commit is contained in:
Harald Kuhr
2013-06-21 11:13:23 -07:00
2 changed files with 7 additions and 5 deletions

View File

@@ -45,7 +45,7 @@
<module>imageio-jmagick</module> <module>imageio-jmagick</module>
<!-- Test cases for the JRE provided ImageIO plugins --> <!-- Test cases for the JRE provided ImageIO plugins -->
<module>imageio-reference</module> <module>imageio-reference</module>
</modules> </modules>
<properties> <properties>
@@ -90,6 +90,7 @@
<groupId>org.mockito</groupId> <groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId> <artifactId>mockito-all</artifactId>
<version>1.8.5</version> <version>1.8.5</version>
<scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
@@ -115,5 +116,5 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
</project> </project>

View File

@@ -29,7 +29,7 @@
<artifactId>common-image</artifactId> <artifactId>common-image</artifactId>
<version>${project.version}</version> <version>${project.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.twelvemonkeys.common</groupId> <groupId>com.twelvemonkeys.common</groupId>
<artifactId>common-lang</artifactId> <artifactId>common-lang</artifactId>
@@ -65,7 +65,7 @@
<version>1.2.14</version> <version>1.2.14</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>commons-fileupload</groupId> <groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId> <artifactId>commons-fileupload</artifactId>
@@ -84,6 +84,7 @@
<groupId>org.mockito</groupId> <groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId> <artifactId>mockito-all</artifactId>
<version>1.8.5</version> <version>1.8.5</version>
<scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
@@ -117,5 +118,5 @@
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>