|
@@ -87,8 +87,8 @@
|
|
|
<optional>true</optional>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
- <groupId>org.apache.tomcat</groupId>
|
|
|
- <artifactId>tomcat-servlet-api</artifactId>
|
|
|
+ <groupId>javax.servlet</groupId>
|
|
|
+ <artifactId>javax.servlet-api</artifactId>
|
|
|
<version>3.0.1</version>
|
|
|
<scope>provided</scope>
|
|
|
</dependency>
|
|
@@ -116,6 +116,48 @@
|
|
|
<version>1.9.5</version>
|
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.powermock</groupId>
|
|
|
+ <artifactId>powermock-api-mockito</artifactId>
|
|
|
+ <version>1.5.1</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>mockito-all</artifactId>
|
|
|
+ <groupId>org.mockito</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.powermock</groupId>
|
|
|
+ <artifactId>powermock-api-support</artifactId>
|
|
|
+ <version>1.5.1</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.powermock</groupId>
|
|
|
+ <artifactId>powermock-core</artifactId>
|
|
|
+ <version>1.5.1</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.powermock</groupId>
|
|
|
+ <artifactId>powermock-module-junit4</artifactId>
|
|
|
+ <version>1.5.1</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.powermock</groupId>
|
|
|
+ <artifactId>powermock-module-junit4-common</artifactId>
|
|
|
+ <version>1.5.1</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.powermock</groupId>
|
|
|
+ <artifactId>powermock-reflect</artifactId>
|
|
|
+ <version>1.5.1</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
@@ -128,5 +170,11 @@
|
|
|
<version>4.0.0.CI-SNAPSHOT</version>
|
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-webmvc</artifactId>
|
|
|
+ <version>4.0.2.RELEASE</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
</dependencies>
|
|
|
</project>
|