Changeset 31428 in osm for applications/viewer/jmapviewer
- Timestamp:
- 2015-08-01T20:23:53+02:00 (9 years ago)
- Location:
- applications/viewer/jmapviewer
- Files:
-
- 22 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/viewer/jmapviewer
- Property svn:ignore
-
old new 5 5 tiles 6 6 JMapViewer.zip 7 checkstyle-jmapviewer.xml 8 findbugs-jmapviewer.xml
-
- Property svn:ignore
-
applications/viewer/jmapviewer/.project
r30881 r31428 11 11 </arguments> 12 12 </buildCommand> 13 <buildCommand> 14 <name>net.sf.eclipsecs.core.CheckstyleBuilder</name> 15 <arguments> 16 </arguments> 17 </buildCommand> 13 18 </buildSpec> 14 19 <natures> 15 20 <nature>org.eclipse.jdt.core.javanature</nature> 21 <nature>net.sf.eclipsecs.core.CheckstyleNature</nature> 16 22 </natures> 17 23 </projectDescription> -
applications/viewer/jmapviewer/build.xml
r30425 r31428 2 2 <project default="all" name="Compile and build java classes plus jar archives"> 3 3 4 <target name="all" depends="clean,build,svn_info,pack,create_run_jar,create_release_zip,create_source_release_zip " />4 <target name="all" depends="clean,build,svn_info,pack,create_run_jar,create_release_zip,create_source_release_zip,findbugs,checkstyle" /> 5 5 6 6 <target name="clean"> … … 34 34 </target> 35 35 36 <target name="pack" >36 <target name="pack" depends="build"> 37 37 <!-- Create the JAR file containing the compiled class files --> 38 38 <jar destfile="JMapViewer.jar" filesetmanifest="mergewithoutmain"> … … 76 76 </target> 77 77 78 <target name="checkstyle"> 79 <taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties" 80 classpath="tools/checkstyle/checkstyle-6.8.1-all.jar"/> 81 <checkstyle config="tools/checkstyle/jmapviewer_checks.xml"> 82 <fileset dir="${basedir}/src" includes="**/*.java" /> 83 <formatter type="xml" toFile="checkstyle-jmapviewer.xml"/> 84 </checkstyle> 85 </target> 86 87 <target name="findbugs" depends="pack"> 88 <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" 89 classpath="tools/findbugs/findbugs-ant.jar"/> 90 <path id="findbugs-classpath"> 91 <fileset dir="tools/findbugs/"> 92 <include name="*.jar"/> 93 </fileset> 94 </path> 95 <property name="findbugs-classpath" refid="findbugs-classpath"/> 96 <findbugs output="xml" 97 outputFile="findbugs-jmapviewer.xml" 98 classpath="${findbugs-classpath}" 99 effort="max" 100 > 101 <sourcePath path="${basedir}/src" /> 102 <class location="JMapViewer.jar" /> 103 </findbugs> 104 </target> 105 78 106 </project>
Note:
See TracChangeset
for help on using the changeset viewer.