From: David H. <dhu...@us...> - 2010-12-02 17:17:35
|
Update of /cvsroot/jrobin In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv30067 Modified Files: .classpath .project pom.xml Log Message: ByteBuffer Backend Factory. Index: .project =================================================================== RCS file: /cvsroot/jrobin/.project,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .project 1 Aug 2008 20:54:10 -0000 1.1 --- .project 2 Dec 2010 17:17:25 -0000 1.2 *************** *** 1,15 **** <projectDescription> ! <name>jrobin</name> ! <comment>JRobin is a 100% pure Java alternative to RRDTool, with about exactly the same specifications. If you provide the same data to RRDTool and JRobin, you will get exactly the same results and graphs. All standard RRDTool operations are supported.</comment> ! <projects/> ! <buildSpec> ! <buildCommand> ! <name>org.eclipse.jdt.core.javabuilder</name> ! </buildCommand> ! </buildSpec> ! <natures> ! <nature>org.eclipse.jdt.core.javanature</nature> ! </natures> ! </projectDescription> \ No newline at end of file --- 1,31 ---- + <?xml version="1.0" encoding="UTF-8"?> <projectDescription> ! <name>jrobin</name> ! <comment>JRobin is a 100% pure Java alternative to RRDTool, with about exactly the same specifications. If you provide the same data to RRDTool and JRobin, you will get exactly the same results and graphs. All standard RRDTool operations are supported.</comment> ! <projects> ! </projects> ! <buildSpec> ! <buildCommand> ! <name>org.eclipse.wst.common.project.facet.core.builder</name> ! <arguments> ! </arguments> ! </buildCommand> ! <buildCommand> ! <name>org.eclipse.jdt.core.javabuilder</name> ! <arguments> ! </arguments> ! </buildCommand> ! <buildCommand> ! <name>org.maven.ide.eclipse.maven2Builder</name> ! <arguments> ! </arguments> ! </buildCommand> ! </buildSpec> ! <natures> ! <nature>org.maven.ide.eclipse.maven2Nature</nature> ! <nature>org.eclipse.jdt.core.javanature</nature> ! <nature>org.eclipse.wst.common.project.facet.core.nature</nature> ! </natures> ! </projectDescription> Index: pom.xml =================================================================== RCS file: /cvsroot/jrobin/pom.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** pom.xml 26 Aug 2008 18:15:08 -0000 1.2 --- pom.xml 2 Dec 2010 17:17:25 -0000 1.3 *************** *** 211,215 **** <artifactId>junit</artifactId> <version>4.4</version> ! <scope>test</scope> </dependency> </dependencies> --- 211,215 ---- <artifactId>junit</artifactId> <version>4.4</version> ! <scope>compile</scope> </dependency> </dependencies> Index: .classpath =================================================================== RCS file: /cvsroot/jrobin/.classpath,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** .classpath 1 Aug 2008 18:36:41 -0000 1.2 --- .classpath 2 Dec 2010 17:17:25 -0000 1.3 *************** *** 1,7 **** <classpath> ! <classpathentry kind="src" path="fonts" excluding="**/*.java"/> ! <classpathentry kind="src" path="src"/> ! <classpathentry kind="output" path="target/classes"/> ! <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> ! <classpathentry kind="var" path="M2_REPO/junit/junit/3.8.1/junit-3.8.1.jar"/> ! </classpath> \ No newline at end of file --- 1,9 ---- + <?xml version="1.0" encoding="UTF-8"?> <classpath> ! <classpathentry kind="src" output="target/classes" path="src"/> ! <classpathentry excluding="**" kind="src" output="target/classes" path="fonts"/> ! <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/> ! <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/> ! <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/> ! <classpathentry kind="output" path="target/classes"/> ! </classpath> |