remove dependencies on servlet-api 2.3
Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/82eef30f Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/82eef30f Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/82eef30f Branch: refs/heads/sandbox/servlet3 Commit: 82eef30f698cbba11393415a582c4b3d599acff9 Parents: 53c90c2 Author: Emond Papegaaij <[email protected]> Authored: Tue Apr 3 16:37:59 2012 +0200 Committer: Emond Papegaaij <[email protected]> Committed: Thu Apr 19 11:04:23 2012 +0200 ---------------------------------------------------------------------- pom.xml | 6 ++++++ wicket-examples/pom.xml | 6 ++++++ 2 files changed, 12 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/82eef30f/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 544c460..7c64805 100644 --- a/pom.xml +++ b/pom.xml @@ -412,6 +412,12 @@ <artifactId>httpunit</artifactId> <version>1.6.1</version> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + </exclusion> + </exclusions> </dependency> </dependencies> </dependencyManagement> http://git-wip-us.apache.org/repos/asf/wicket/blob/82eef30f/wicket-examples/pom.xml ---------------------------------------------------------------------- diff --git a/wicket-examples/pom.xml b/wicket-examples/pom.xml index 63a125f..9403260 100644 --- a/wicket-examples/pom.xml +++ b/wicket-examples/pom.xml @@ -84,6 +84,12 @@ <groupId>com.uwyn</groupId> <artifactId>jhighlight</artifactId> <version>1.0</version> + <exclusions> + <exclusion> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>httpunit</groupId>
