Ignore:
Timestamp:
2016-06-16T15:25:29+02:00 (10 years ago)
Author:
floscher
Message:

Update several tools to their latest version

These are:

  • Java now uses source compatibility of 1.8 instead of 1.7 for compiling
  • Gradle 2.14
  • PMD 5.4.2
  • JaCoCo 0.7.7
File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/mapillary/build.gradle

    r32078 r32285  
    66apply plugin: 'project-report'
    77
    8 sourceCompatibility = '1.7'
     8sourceCompatibility = '1.8'
    99
    1010repositories {
     
    2828  }
    2929}
     30
    3031dependencies {
    3132  // The JOSM-version can be specified as "latest", "tested" or the numeric version number.
    3233  // When using a numeric version number you can leave out {changing=true}.
    33   compile(':josm:9811')
     34  compile(':josm:10327')
    3435  // For plugins it's irrelevant, which version is specified, always the latest version is used.
    3536  compile (name: 'apache-commons'){changing=true}
     
    7576
    7677pmd {
    77   toolVersion '5.4.1'
     78  toolVersion project.property('tools.pmd.version')
    7879  ignoreFailures true
    79   targetJdk sourceCompatibility
    80   ruleSetFiles = files('.settings/pmd-ruleset.xml')
     80  targetJdk 1.7 // 1.8 is not yet available
     81  ruleSetConfig = resources.text.fromFile('.settings/pmd-ruleset.xml')
    8182}
    8283
     
    9091/** FindBugs configuration */
    9192findbugs {
    92   toolVersion = "3.0.1"
     93  toolVersion = project.property('tools.findbugs.version')
    9394  ignoreFailures = true
    9495  effort = "max"
     
    104105/** JaCoCo configuration */
    105106jacoco {
    106   toolVersion = "0.7.5.201505241946"
     107  toolVersion = project.property('tools.jacoco.version')
    107108}
    108109jacocoTestReport {
Note: See TracChangeset for help on using the changeset viewer.