Changeset 32579 in osm for applications
- Timestamp:
- 2016-07-05T14:49:03+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/mapillary
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/.settings/pmd-ruleset.xml
r32063 r32579 31 31 <rule ref="rulesets/java/finalizers.xml"/> 32 32 <rule ref="rulesets/java/imports.xml"/> 33 <rule ref="rulesets/java/naming.xml"> 34 <exclude name="ShortVariable"/> 35 <exclude name="LongVariable"/> 36 <exclude name="AbstractNaming"/> 37 </rule> 33 38 <rule ref="rulesets/java/optimizations.xml"> 34 39 <exclude name="LocalVariableCouldBeFinal" /> -
applications/editors/josm/plugins/mapillary/build.gradle
r32403 r32579 32 32 // The JOSM-version can be specified as "latest", "tested" or the numeric version number. 33 33 // When using a numeric version number you can leave out {changing=true}. 34 compile(':josm:10 377')34 compile(':josm:10485') 35 35 // For plugins it's irrelevant, which version is specified, always the latest version is used. 36 36 compile (name: 'apache-commons'){changing=true} … … 80 80 toolVersion project.property('tools.pmd.version') 81 81 ignoreFailures true 82 targetJdk 1.7 // 1.8 is not yet available 82 targetJdk 1.7 // 1.8 is not yet available (as of Gradle 2.14, see https://docs.gradle.org/current/javadoc/org/gradle/api/plugins/quality/TargetJdk.html) 83 83 ruleSetConfig = resources.text.fromFile('.settings/pmd-ruleset.xml') 84 84 } -
applications/editors/josm/plugins/mapillary/gradle.properties
r32396 r32579 12 12 #plugin.stage=... 13 13 14 tools.pmd.version=5. 4.214 tools.pmd.version=5.5.0 15 15 tools.findbugs.version=3.0.1 16 16 tools.jacoco.version=0.7.7.201606060606 -
applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryPreferenceSetting.java
r32378 r32579 168 168 } 169 169 170 @SuppressWarnings("PMD.ShortMethodName") 170 171 @Override 171 172 public boolean ok() {
Note:
See TracChangeset
for help on using the changeset viewer.