Changeset 12801 in josm
- Timestamp:
- 2017-09-09T15:02:42+02:00 (7 years ago)
- Location:
- trunk
- Files:
-
- 9 added
- 12 deleted
- 6 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
trunk/.classpath
r12640 r12801 31 31 <classpathentry kind="lib" path="test/lib/fest/debug-1.0.jar"/> 32 32 <classpathentry exported="true" kind="con" path="GROOVY_DSL_SUPPORT"/> 33 <classpathentry kind="lib" path="tools/ findbugs/annotations.jar"/>33 <classpathentry kind="lib" path="tools/spotbugs/spotbugs-annotations.jar"/> 34 34 <classpathentry kind="output" path="bin"/> 35 35 </classpath> -
trunk/.settings/edu.umd.cs.findbugs.core.prefs
r10850 r12801 203 203 detector_threshold=3 204 204 effort=max 205 excludefilter0=tools/ findbugs/josm-filter.xml|true205 excludefilter0=tools/spotbugs/josm-filter.xml|true 206 206 filter_settings=Low|BAD_PRACTICE,CORRECTNESS,EXPERIMENTAL,I18N,MALICIOUS_CODE,MT_CORRECTNESS,PERFORMANCE,SECURITY,STYLE|false|20 207 207 filter_settings_neg=NOISE| -
trunk/README
r12626 r12801 124 124 - commons-cli-1.3.1.jar dependency of Groovy Ant task 125 125 - error_prone_ant.jar used to detect code errors during compilation 126 - findbugs/ libs and config files for findbugs (automatically detects common bugs and potential126 - spotbugs/ libs and config files for spotbugs (automatically detects common bugs and potential 127 127 problems in source code); can be launched as an ant target in build.xml 128 128 - groovy-all.jar used for some unit tests and various scripts -
trunk/build.xml
r12715 r12801 48 48 <pathelement path="${dist.jar}"/> 49 49 <pathelement path="${groovy.jar}"/> 50 <pathelement path="tools/ findbugs/annotations.jar"/>50 <pathelement path="tools/spotbugs/spotbugs-annotations.jar"/> 51 51 </path> 52 52 <path id="pmd.classpath"> … … 714 714 <sequential> 715 715 <echo message="Generating Taginfo for type @{type} to @{output}"/> 716 <groovy src="${taginfoextract}" classpath="${dist.jar}:tools/ findbugs/annotations.jar">716 <groovy src="${taginfoextract}" classpath="${dist.jar}:tools/spotbugs/spotbugs-annotations.jar"> 717 717 <arg value="-t"/> 718 718 <arg value="@{type}"/> … … 790 790 </target> 791 791 792 <target name=" findbugs" depends="dist">793 <taskdef name=" findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" classpath="tools/findbugs/findbugs-ant.jar"/>794 <path id=" findbugs-classpath">795 <fileset dir="${base.dir}/tools/ findbugs/">792 <target name="spotbugs" depends="dist"> 793 <taskdef name="spotbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" classpath="tools/spotbugs/spotbugs-ant.jar"/> 794 <path id="spotbugs-classpath"> 795 <fileset dir="${base.dir}/tools/spotbugs/"> 796 796 <include name="*.jar"/> 797 797 </fileset> 798 798 </path> 799 <property name=" findbugs-classpath" refid="findbugs-classpath"/>800 < findbugs output="xml"801 outputFile=" findbugs-josm.xml"802 classpath="${ findbugs-classpath}"799 <property name="spotbugs-classpath" refid="spotbugs-classpath"/> 800 <spotbugs output="xml" 801 outputFile="spotbugs-josm.xml" 802 classpath="${spotbugs-classpath}" 803 803 pluginList="" 804 excludeFilter="tools/ findbugs/josm-filter.xml"804 excludeFilter="tools/spotbugs/josm-filter.xml" 805 805 effort="max" 806 806 reportLevel="low" … … 808 808 <sourcePath path="${base.dir}/src" /> 809 809 <class location="${dist.jar}" /> 810 </ findbugs>810 </spotbugs> 811 811 </target> 812 812 -
trunk/netbeans/nbproject/project.properties
r12640 r12801 43 43 file.reference.fest-swing-1.1.jar=../test/lib/fest/fest-swing-1.1.jar 44 44 file.reference.fest-util-1.0.jar=../test/lib/fest/fest-util-1.0.jar 45 file.reference. findbugs.jar=../tools/findbugs/findbugs.jar45 file.reference.spotbugs.jar=../tools/spotbugs/spotbugs.jar 46 46 file.reference.guava-21.0.jar=../test/lib/reflections/guava-21.0.jar 47 47 file.reference.hamcrest-core-1.3.jar=../test/lib/junit/hamcrest-core-1.3.jar … … 93 93 ${file.reference.system-rules-1.16.1.jar}:\ 94 94 ${file.reference.wiremock-standalone-2.7.1.jar}:\ 95 ${file.reference. findbugs.jar}:\95 ${file.reference.spotbugs.jar}:\ 96 96 ${file.reference.commons-testing-2.1.0.jar} 97 97 javac.test.processorpath=\
Note:
See TracChangeset
for help on using the changeset viewer.