diff options
Diffstat (limited to 'openstack-client/pom.xml')
-rw-r--r-- | openstack-client/pom.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/openstack-client/pom.xml b/openstack-client/pom.xml index 671f257..fc47940 100644 --- a/openstack-client/pom.xml +++ b/openstack-client/pom.xml @@ -15,14 +15,17 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> + <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> + <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito</artifactId> + <scope>test</scope> </dependency> </dependencies> @@ -38,10 +41,13 @@ <goals> <goal>test-jar</goal> </goals> + <configuration> + <skip>false</skip> + </configuration> </execution> </executions> </plugin> </plugins> </build> -</project>
\ No newline at end of file +</project> |