From: Yoav F. <yf...@us...> - 2008-09-03 18:18:53
|
Update of /cvsroot/jboost/jboost In directory sc8-pr-cvs17.sourceforge.net:/tmp/cvs-serv26151 Modified Files: build.xml Added Files: .project .classpath Log Message: Updated eclipse project configuration files and ant build file to point to new libraries. --- NEW FILE: .project --- <?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>jboost</name> <comment></comment> <projects> </projects> <buildSpec> <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> </buildCommand> </buildSpec> <natures> <nature>org.eclipse.jdt.core.javanature</nature> </natures> </projectDescription> Index: build.xml =================================================================== RCS file: /cvsroot/jboost/jboost/build.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** build.xml 23 Oct 2007 23:52:26 -0000 1.8 --- build.xml 3 Sep 2008 18:18:49 -0000 1.9 *************** *** 77,81 **** description="Compile all source code."> <javac srcdir="${dir.src}" ! classpath="${dir.lib}/junit.jar:${dir.lib}/concurrent.jar" destdir="${dir.build}" debug="on" --- 77,81 ---- description="Compile all source code."> <javac srcdir="${dir.src}" ! classpath="${dir.lib}/junit.jar:${dir.lib}/concurrent.jar:${dir.lib}/jfreechart-1.0.10.jar:${dir.lib}/jcommon-1.0.8.jar:${dir.lib}/swing-layout-1.0.jar" destdir="${dir.build}" debug="on" --- NEW FILE: .classpath --- <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path="src"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/jcommon-1.0.8"/> <classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/jfreechart-1.0.10"/> <classpathentry kind="lib" path="lib/swing-layout-1.0.jar"/> <classpathentry kind="output" path="bin"/> </classpath> |