Changeset 1923
- Timestamp:
- 11/08/07 09:06:43 (13 months ago)
- Location:
- trunk
- Files:
-
- 3 added
- 4 modified
-
build.xml (modified) (1 diff)
-
components/antlib/resources/lifecycle.xml (modified) (1 diff)
-
components/dsl/ivy.xml (modified) (2 diffs)
-
docs/styles/checkstyle.xml (added)
-
etc/omero.properties (modified) (1 diff)
-
format.sh (added)
-
lib/repository/checkstyle-4.3.jar (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r1910 r1923 174 174 </target> 175 175 176 <target name="findbugs" depends="multiproject" description="Generates findbugs.xml for all components">176 <target name="findbugs" depends="multiproject" description="Generates findbugs.xml and checkstyle.xml for all components"> 177 177 <iterate target="findbugs"/> 178 178 <iterate buildpathref="tools.buildpath" target="findbugs"/> -
trunk/components/antlib/resources/lifecycle.xml
r1910 r1923 296 296 <macrodef name="do-find-bugs"> 297 297 <sequential> 298 <find-bugs home="${findbugs.home}" output="xml " outputFile="${target.dir}/findbugs.xml">298 <find-bugs home="${findbugs.home}" output="xml:withMessages" outputFile="${target.dir}/findbugs.xml"> 299 299 <class location="${findbugs.target}" /> 300 300 <auxClasspath> -
trunk/components/dsl/ivy.xml
r1909 r1923 14 14 <dependencies> 15 15 <dependency org="ant" name="ant" rev="1.6.5" conf="build->default"/> 16 <dependency org="commons-collections" name="commons-collections" rev=" 3.1" conf="build->default"/>16 <dependency org="commons-collections" name="commons-collections" rev="${versions.commons-collections}" conf="build->default"/> 17 17 <dependency org="commons-logging" name="commons-logging" rev="${versions.commons-logging}" conf="build->default"/> 18 18 <dependency org="groovy" name="groovy" rev="${versions.groovy}" conf="build->default"/> … … 31 31 <dependency org="emma" name="emma" rev="${versions.emma}" conf="test->default"/> 32 32 <dependency org="emma" name="emma_ant" rev="${versions.emma}" conf="test->default"/> 33 <dependency org="checkstyle" name="checkstyle" rev="${versions.checkstyle}" conf="test->default"/> 34 <dependency org="commons-beanutils" name="commons-beanutils" rev="${versions.commons-beanutils}" conf="test->default"/> 35 <dependency org="antlr" name="antlr" rev="2.7.6" conf="test->default"/> 33 36 </dependencies> 34 37 </ivy-module> -
trunk/etc/omero.properties
r1909 r1923 77 77 versions.postgresql=8.1-405.jdbc3 78 78 versions.testng=5.2-jdk15 79 versions.checkstyle=4.3 79 80 versions.findbugs=1.2.1 80 81 versions.emma=2.0.5312
