Changeset 32285 in osm for applications/editors/josm/plugins/mapillary/build.gradle
- Timestamp:
- 2016-06-16T15:25:29+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/build.gradle
r32078 r32285 6 6 apply plugin: 'project-report' 7 7 8 sourceCompatibility = '1. 7'8 sourceCompatibility = '1.8' 9 9 10 10 repositories { … … 28 28 } 29 29 } 30 30 31 dependencies { 31 32 // The JOSM-version can be specified as "latest", "tested" or the numeric version number. 32 33 // When using a numeric version number you can leave out {changing=true}. 33 compile(':josm: 9811')34 compile(':josm:10327') 34 35 // For plugins it's irrelevant, which version is specified, always the latest version is used. 35 36 compile (name: 'apache-commons'){changing=true} … … 75 76 76 77 pmd { 77 toolVersion '5.4.1'78 toolVersion project.property('tools.pmd.version') 78 79 ignoreFailures true 79 targetJdk sourceCompatibility80 ruleSet Files = files('.settings/pmd-ruleset.xml')80 targetJdk 1.7 // 1.8 is not yet available 81 ruleSetConfig = resources.text.fromFile('.settings/pmd-ruleset.xml') 81 82 } 82 83 … … 90 91 /** FindBugs configuration */ 91 92 findbugs { 92 toolVersion = "3.0.1"93 toolVersion = project.property('tools.findbugs.version') 93 94 ignoreFailures = true 94 95 effort = "max" … … 104 105 /** JaCoCo configuration */ 105 106 jacoco { 106 toolVersion = "0.7.5.201505241946"107 toolVersion = project.property('tools.jacoco.version') 107 108 } 108 109 jacocoTestReport {
Note:
See TracChangeset
for help on using the changeset viewer.
