From: Konstantin P. <ko...@us...> - 2006-09-16 15:09:14
|
Update of /cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-web In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv9417 Modified Files: pom.xml Log Message: fix for XDP-184 ( Thanks Ulrich ) test coverage for this improvement m, as well reworking of test classes to get rid of dependency to testapp-web Index: pom.xml =================================================================== RCS file: /cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-web/pom.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** pom.xml 25 Aug 2006 16:13:58 -0000 1.2 --- pom.xml 16 Sep 2006 15:09:10 -0000 1.3 *************** *** 10,13 **** --- 10,20 ---- <artifactId>xdoclet-plugin-web</artifactId> <name>xdoclet-plugin-web</name> + <contributors> + <contributor> + <name> + Ulrich Vachon + </name> + </contributor> + </contributors> <build> <plugins> *************** *** 19,28 **** </build> <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> ! <version>2.3</version> ! <scope>test</scope> </dependency> </dependencies> <properties> --- 26,42 ---- </build> <dependencies> + <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> ! <version>2.4</version> </dependency> + + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>jsp-api</artifactId> + <version>2.0</version> + </dependency> + </dependencies> <properties> |