diff options
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 28 |
1 files changed, 27 insertions, 1 deletions
@@ -11,6 +11,26 @@ <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> + + <build> + <plugins> + <plugin> + <groupId>org.owasp</groupId> + <artifactId>dependency-check-maven</artifactId> + <version>1.2.5</version> + <executions> + <execution> + <phase>verify</phase> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + + <dependencies> <dependency> <groupId>xerces</groupId> @@ -80,11 +100,17 @@ <type>jar</type> <scope>compile</scope> </dependency> - <dependency> +<!-- <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> + </dependency> --> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + <version>4.3.5</version> </dependency> + </dependencies> </project> |