[Virtualcommons-svn] SF.net SVN: virtualcommons:[8] foraging/trunk
Status: Beta
Brought to you by:
alllee
From: <al...@us...> - 2008-07-26 06:18:23
|
Revision: 8 http://virtualcommons.svn.sourceforge.net/virtualcommons/?rev=8&view=rev Author: alllee Date: 2008-07-26 06:18:33 +0000 (Sat, 26 Jul 2008) Log Message: ----------- changing compile to -source 1.6 Modified Paths: -------------- foraging/trunk/build.xml foraging/trunk/pom.xml Modified: foraging/trunk/build.xml =================================================================== --- foraging/trunk/build.xml 2008-07-26 05:19:15 UTC (rev 7) +++ foraging/trunk/build.xml 2008-07-26 06:18:33 UTC (rev 8) @@ -42,7 +42,7 @@ uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path"/> </target> - <target name='resolve' description='--> retrieve dependencies with ivy'> + <target name='resolve' depends='init-ivy' description='--> retrieve dependencies with ivy'> <ivy:retrieve pattern='${lib.dir}/[conf]/[artifact].[ext]'/> </target> @@ -113,7 +113,7 @@ </echo> </target> - <target name='build-all' depends='facilitator-jar, client-jar, server-jar, compile, clean'/> + <target name='build-all' depends='facilitator-jar, client-jar, server-jar, compile'/> <!-- deploys the client jar to the appropriate webapps directory. --> <target name='deploy' depends='build-all'> @@ -288,21 +288,11 @@ </target> - <!-- Build private-level documentation --> - <target name="private-docs"> - <javadoc sourcepath="${src.dir}" - destdir="${javadoc.private.dir}" - packagenames="*" - link="http://java.sun.com/j2se/1.4/docs/api/" - source="1.4" - access="private"/> - </target> - <!-- Compile Tests --> <target name="compile-tests" depends="compile"> <javac srcdir="${test.src.dir}" destdir="${test.build.dir}" - source="1.5" + source="1.6" debug="on"> <!-- <compilerarg value='-Xlint:unchecked'/> --> <classpath refid="project.classpath" /> Modified: foraging/trunk/pom.xml =================================================================== --- foraging/trunk/pom.xml 2008-07-26 05:19:15 UTC (rev 7) +++ foraging/trunk/pom.xml 2008-07-26 06:18:33 UTC (rev 8) @@ -53,8 +53,8 @@ <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> - <source>1.5</source> - <target>1.5</target> + <source>1.6</source> + <target>1.6</target> </configuration> </plugin> </plugins> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |