| author | akozak | 2011-11-24 08:16:15 (EST) |
|---|---|---|
| committer | Winston Prakash | 2011-12-01 20:47:26 (EST) |
| commit | f6593427c436160e7d4f58b6befc87c6addaf699 (patch) (side-by-side diff) | |
| tree | 2890c5e0fb9034a43b71a2b55dee77505ee44ab8 | |
| parent | 2845985d60e66b122a71c635a096159ff0152766 (diff) | |
| download | org.eclipse.hudson.core-f6593427c436160e7d4f58b6befc87c6addaf699.zip org.eclipse.hudson.core-f6593427c436160e7d4f58b6befc87c6addaf699.tar.gz org.eclipse.hudson.core-f6593427c436160e7d4f58b6befc87c6addaf699.tar.bz2 | |
Added mockito-core dependency to plugin-parent
Signed-off-by: Winston Prakash <winston.prakash@gmail.com>
| -rw-r--r-- | hudson-plugin-parent/pom.xml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/hudson-plugin-parent/pom.xml b/hudson-plugin-parent/pom.xml index cbf0eef..b509f2e 100644 --- a/hudson-plugin-parent/pom.xml +++ b/hudson-plugin-parent/pom.xml @@ -77,6 +77,34 @@ <scope>test</scope> </dependency> <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-module-junit4</artifactId> + <version>${powermock.version}</version> + <scope>test</scope> + <optional>true</optional> + </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-api-easymock</artifactId> + <version>${powermock.version}</version> + <scope>test</scope> + <optional>true</optional> + </dependency> + <dependency> + <groupId>org.easymock</groupId> + <artifactId>easymock</artifactId> + <version>${easymock.version}</version> + <scope>test</scope> + <optional>true</optional> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <version>${mockito-core.version}</version> + <scope>test</scope> + <optional>true</optional> + </dependency> + <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>${servlet-api.version}</version> |

