Changeset 32677 in osm


Ignore:
Timestamp:
2016-07-21T02:29:43+02:00 (8 years ago)
Author:
donvip
Message:

see #josm11390 - switch to Java 8

Location:
applications/viewer/jmapviewer
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • applications/viewer/jmapviewer/.classpath

    r30425 r32677  
    22<classpath>
    33        <classpathentry kind="src" path="src"/>
    4         <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
     4        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
    55        <classpathentry kind="output" path="bin"/>
    66</classpath>
  • applications/viewer/jmapviewer/.settings/org.eclipse.jdt.core.prefs

    r31439 r32677  
    1717org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
    1818org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
    19 org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
     19org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
    2020org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
    21 org.eclipse.jdt.core.compiler.compliance=1.7
     21org.eclipse.jdt.core.compiler.compliance=1.8
    2222org.eclipse.jdt.core.compiler.debug.lineNumber=generate
    2323org.eclipse.jdt.core.compiler.debug.localVariable=generate
     
    122122org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
    123123org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
    124 org.eclipse.jdt.core.compiler.source=1.7
     124org.eclipse.jdt.core.compiler.source=1.8
    125125org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
    126126org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
  • applications/viewer/jmapviewer/Readme.txt

    r31045 r32677  
    33(c) 2007, Tim Haussmann
    44(c) 2008-2012, Jan Peter Stotz
    5 (c) 2009-2015, Dirk Stöcker
     5(c) 2009-2016, Dirk Stöcker
    66(c) 2009, Stefan Zeller
    77(c) 2009, Karl Guggisberg
     
    99(c) 2010-2011, Ian Dees
    1010(c) 2010-2011, Michael Vigovsky
    11 (c) 2011-2015, Paul Hartmann
     11(c) 2011-2016, Paul Hartmann
    1212(c) 2011-2014, Gleb Smirnoff
    13 (c) 2011-2015, Vincent Privat
     13(c) 2011-2016, Vincent Privat
    1414(c) 2011, Jason Huntley
    15 (c) 2012, Simon Legner
     15(c) 2012-2016, Simon Legner
    1616(c) 2012, Teemu Koskinen
    1717(c) 2012, Jiri Klement
     
    1919(c) 2013, Alexei Kasatkin
    2020(c) 2013, Galo Higueras
     21(c) 2015-2016, Wiktor Niesiobędzki
    2122
    2223This work bases partly on the JOSM plugin "Slippy Map Chooser" by Tim Haussmann
  • applications/viewer/jmapviewer/build.xml

    r32207 r32677  
    1515
    1616        <target name="build">
    17                 <javac srcdir="src" destdir="bin" source="1.7" target="1.7" debug="true" includeantruntime="false" encoding="UTF-8">
     17                <javac srcdir="src" destdir="bin" source="1.8" target="1.8" debug="true" includeantruntime="false" encoding="UTF-8">
    1818                        <include name="org/openstreetmap/gui/jmapviewer/**" />
    1919                </javac>
     
    114114                linksource="true"
    115115                author="false">
    116             <link href="http://docs.oracle.com/javase/7/docs/api"/>
     116            <link href="http://docs.oracle.com/javase/8/docs/api"/>
    117117            <doctitle><![CDATA[<h2>JMapViewer - Javadoc</h2>]]></doctitle>
    118118            <bottom><![CDATA[<a href="https://josm.openstreetmap.de/">JMapViewer</a>]]></bottom>
  • applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/package.html

    r31429 r32677  
    88any further requirements. Therefore <b>please do not add any code that
    99depends on other libraries or applications</b>. Only functions and methods
    10 provided by the runtime library of Java 7 should be used.</p>
     10provided by the runtime library of Java 8 should be used.</p>
    1111</body>
    1212</html>
Note: See TracChangeset for help on using the changeset viewer.