Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Move powermock config from parent to client
Browse files Browse the repository at this point in the history
  • Loading branch information
seanf committed Mar 22, 2016
1 parent b4a55f4 commit c328bea
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>org.zanata</groupId>
<artifactId>zanata-parent</artifactId>
<version>27</version>
<version>28-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>

Expand Down Expand Up @@ -37,10 +37,12 @@
<properties>
<zanata.api.version>3.9.0-SNAPSHOT</zanata.api.version>
<zanata.common.version>3.9.0-SNAPSHOT</zanata.common.version>
<powermock.version>1.6.2</powermock.version>
<resteasy.version>3.0.11.Final</resteasy.version>
<jersey.version>1.17.1</jersey.version>
</properties>


<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -211,6 +213,30 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito</artifactId>
<version>${powermock.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-core</artifactId>
<version>${powermock.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<version>${powermock.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.simpleframework</groupId>
<artifactId>simple</artifactId>
Expand Down

0 comments on commit c328bea

Please sign in to comment.