Changeset 32063 in osm
- Timestamp:
- 2016-02-11T23:17:10+01:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/mapillary
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/.project
r31798 r32063 2 2 <projectDescription> 3 3 <name>JOSM-Mapillary</name> 4 <comment></comment> 5 <projects> 6 </projects> 4 <comment>Allows the user to work with pictures hosted at mapillary.com</comment> 5 <projects/> 6 <natures> 7 <nature>org.eclipse.jdt.core.javanature</nature> 8 <nature>org.sonarlint.eclipse.core.sonarlintNature</nature> 9 <nature>ch.acanda.eclipse.pmd.builder.PMDNature</nature> 10 </natures> 7 11 <buildSpec> 8 12 <buildCommand> 9 13 <name>org.eclipse.jdt.core.javabuilder</name> 10 <arguments> 11 </arguments> 14 <arguments/> 15 </buildCommand> 16 <buildCommand> 17 <name>ch.acanda.eclipse.pmd.builder.PMDBuilder</name> 18 <arguments/> 12 19 </buildCommand> 13 20 </buildSpec> 14 <natures> 15 <nature>org.eclipse.jdt.core.javanature</nature> 16 <nature>org.sonarlint.eclipse.core.sonarlintNature</nature> 17 </natures> 21 <linkedResources/> 18 22 </projectDescription> -
applications/editors/josm/plugins/mapillary/build.gradle
r31977 r32063 3 3 apply plugin: 'jacoco' 4 4 apply plugin: 'java' 5 apply plugin: 'pmd' 5 6 apply plugin: 'project-report' 6 7 … … 64 65 project { 65 66 name = 'JOSM-Mapillary' 66 natures 'org.sonarlint.eclipse.core.sonarlintNature' 67 comment = property('plugin.description') 68 natures 'org.sonarlint.eclipse.core.sonarlintNature', 'ch.acanda.eclipse.pmd.builder.PMDNature' 69 buildCommand 'ch.acanda.eclipse.pmd.builder.PMDBuilder' 67 70 } 71 } 72 eclipseClasspath.dependsOn cleanEclipseClasspath 73 eclipseProject.dependsOn cleanEclipseProject 74 tasks.eclipse.dependsOn = ['eclipseClasspath', 'eclipseProject'] 75 76 pmd { 77 toolVersion '5.4.1' 78 ignoreFailures true 79 targetJdk sourceCompatibility 80 ruleSetFiles = files('.settings/pmd-ruleset.xml') 68 81 } 69 82 … … 79 92 toolVersion = "3.0.1" 80 93 ignoreFailures = true 81 effort = "m in"82 reportLevel = " high"94 effort = "max" 95 reportLevel = "low" 83 96 } 84 97 tasks.withType(FindBugs) {
Note:
See TracChangeset
for help on using the changeset viewer.