From: <ju...@us...> - 2006-03-08 18:36:05
|
Revision: 71 Author: jurjanw Date: 2006-03-08 10:35:58 -0800 (Wed, 08 Mar 2006) ViewCVS: http://svn.sourceforge.net/sensor/?rev=71&view=rev Log Message: ----------- Added Velocity and it's dependencies Modified Paths: -------------- trunk/sensor-console/.classpath trunk/sensor-console/project.xml Modified: trunk/sensor-console/.classpath =================================================================== --- trunk/sensor-console/.classpath 2006-03-08 18:35:23 UTC (rev 70) +++ trunk/sensor-console/.classpath 2006-03-08 18:35:58 UTC (rev 71) @@ -18,6 +18,10 @@ <classpathentry kind="var" path="MAVEN_REPO/log4j/jars/log4j-1.2.12.jar"/> <classpathentry kind="var" path="MAVEN_REPO/jstl/jars/jstl-1.0.6.jar"/> <classpathentry kind="var" path="MAVEN_REPO/taglibs/jars/standard-1.0.6.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/velocity/jars/velocity-1.4.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/velocity-tools/jars/velocity-tools-1.2.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/velocity-tools/jars/velocity-tools-generic-1.2.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/commons-collections/jars/commons-collections-3.1.jar"/> <classpathentry kind="var" path="MAVEN_REPO/rmock/jars/rmock-2.0.0-rc-5.jar"/> <classpathentry kind="var" path="MAVEN_REPO/cglib/jars/cglib-full-2.0.2.jar"/> <classpathentry kind="var" path="MAVEN_REPO/servletapi/jars/servletapi-2.3.jar"/> Modified: trunk/sensor-console/project.xml =================================================================== --- trunk/sensor-console/project.xml 2006-03-08 18:35:23 UTC (rev 70) +++ trunk/sensor-console/project.xml 2006-03-08 18:35:58 UTC (rev 71) @@ -172,7 +172,9 @@ <type>jar</type> <properties><war.bundle>true</war.bundle></properties> </dependency> + + <!-- Web application support --> <dependency> <groupId>jstl</groupId> @@ -188,7 +190,37 @@ <type>jar</type> <properties><war.bundle>true</war.bundle></properties> </dependency> - + + <!-- Velocity --> + <dependency> + <groupId>velocity</groupId> + <artifactId>velocity</artifactId> + <version>1.4</version> + <type>jar</type> + <properties><war.bundle>true</war.bundle></properties> + </dependency> + <dependency> + <groupId>velocity-tools</groupId> + <artifactId>velocity-tools</artifactId> + <version>1.2</version> + <type>jar</type> + <properties><war.bundle>true</war.bundle></properties> + </dependency> + <dependency> + <groupId>velocity-tools</groupId> + <artifactId>velocity-tools-generic</artifactId> + <version>1.2</version> + <type>jar</type> + <properties><war.bundle>true</war.bundle></properties> + </dependency> + <dependency> + <groupId>commons-collections</groupId> + <artifactId>commons-collections</artifactId> + <version>3.1</version> + <type>jar</type> + <properties><war.bundle>true</war.bundle></properties> + </dependency> + <!-- Unit test specific dependencies --> <!-- <dependency> <groupId>junit</groupId> @@ -251,7 +283,7 @@ <dependency> <groupId>maven</groupId> <artifactId>maven-xdoc-plugin</artifactId> - <version>1.10-sensor</version> + <version>1.9</version> <type>plugin</type> </dependency> </dependencies> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |