diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2014-10-16 09:01:39 +0200 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2014-10-16 09:01:39 +0200 |
commit | 2f3b7f180511a5e0af674e3a25ddbaabaa38d36c (patch) | |
tree | c6837f2224eceb77df85a731410db62580472113 /pom.xml | |
parent | 74c85b426a1a690ac4492f65abcab201b5220c94 (diff) | |
download | egovutils-2f3b7f180511a5e0af674e3a25ddbaabaa38d36c.tar.gz egovutils-2f3b7f180511a5e0af674e3a25ddbaabaa38d36c.tar.bz2 egovutils-2f3b7f180511a5e0af674e3a25ddbaabaa38d36c.zip |
update to Apache commons-http 4.3
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> |