Changeset 32689 in osm for applications/editors


Ignore:
Timestamp:
2016-07-21T13:46:04+02:00 (8 years ago)
Author:
floscher
Message:

[mapillary] Set target platform to Java 1.8 instead of 1.7

This also fixes the broken Gradle build. The JOSM dependency always needs to be a version downloadable from https://josm.openstreetmap.de/download .

Location:
applications/editors/josm/plugins/mapillary
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/mapillary/.settings/org.eclipse.jdt.core.prefs

    r32578 r32689  
    77org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
    88org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
    9 org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
    10 org.eclipse.jdt.core.compiler.compliance=1.7
     9org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
     10org.eclipse.jdt.core.compiler.compliance=1.8
    1111org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
    1212org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
     
    9494org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
    9595org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
    96 org.eclipse.jdt.core.compiler.source=1.7
     96org.eclipse.jdt.core.compiler.source=1.8
    9797org.eclipse.jdt.core.formatter.align_fields_grouping_blank_lines=2147483647
    9898org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
  • applications/editors/josm/plugins/mapillary/build.gradle

    r32680 r32689  
    3030
    3131dependencies {
    32   // The JOSM-version can be specified as "latest", "tested" or the numeric version number.
    33   // When using a numeric version number you can leave out {changing=true}.
    34   compile(':josm:10580')
     32  /**
     33   * The JOSM-version can be specified as "latest", "tested" or the numeric version number.
     34   * When using a numeric version number you can leave out {changing=true}.
     35   *
     36   * Please check for numeric versions, if that specific version is available for download from https://josm.openstreetmap.de/download/ .
     37   * If not, choose the next higher number that is available, or the gradle build will break.
     38   */
     39  compile(':josm:10583')
    3540  // For plugins it's irrelevant, which version is specified, always the latest version is used.
    3641  compile (name: 'apache-commons'){changing=true}
Note: See TracChangeset for help on using the changeset viewer.