Added:
trunk/.classpath (contents, props changed)
trunk/.project (contents, props changed)
trunk/verify.build.xml
Log:
Added .classpath, .project, and verify.build.xml
Added: trunk/.classpath
==============================================================================
--- (empty file)
+++ trunk/.classpath Tue Oct 7 01:01:46 2008
@@ -0,0 +1,7 @@
+<?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.junit.JUNIT_CONTAINER/4"/>
+ <classpathentry kind="output" path="bin"/>
+</classpath>
Added: trunk/.project
==============================================================================
--- (empty file)
+++ trunk/.project Tue Oct 7 01:01:46 2008
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>stack-arakaki</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>
Added: trunk/verify.build.xml
==============================================================================
--- (empty file)
+++ trunk/verify.build.xml Tue Oct 7 01:01:46 2008
@@ -0,0 +1,28 @@
+<project name="verify" default="verify">
+ <description>
+ Runs junit, pmd, checkstyle, findbugs, and javadoc, failing the build
if problems found.
+ Invocation: ant -f verify.build.xml
+ </description>
+
+ <!-- First, override the default settings of these properties. -->
+ <property name="javadoc.failonerror" value="true" />
+ <property name="pmd.failonerror" value="true" />
+ <property name="findbugs.failOnError" value="true" />
+ <property name="checkstyle.failOnViolation" value="true" />
+ <property name="junit.haltonfailure" value="true" />
+
+
+ <!-- Now import the target definitions. -->
+ <import file="javadoc.build.xml" />
+ <import file="pmd.build.xml" />
+ <import file="findbugs.build.xml" />
+ <import file="checkstyle.build.xml" />
+ <import file="junit.build.xml" />
+ <import file="emma.build.xml" />
+
+ <target name="verify"
+ depends="clean, compile, junit.tool, checkstyle.tool, pmd.tool,
findbugs.tool, emma.tool, emma.echo"
+ description="Invoke analyzers, fail if any errors found.">
+ <fail message="FindBugs reported warnings."
if="findbugs.warningsfound" />
+ </target>
+</project>