Ignore:
Timestamp:
2014-08-06T19:52:20+02:00 (10 years ago)
Author:
donvip
Message:

[josm_geotools] update to geotools 11.2

Location:
applications/editors/josm/plugins/geotools
Files:
15 added
15 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/geotools/.classpath

    r30416 r30569  
    66        <classpathentry exported="true" kind="lib" path="lib/commons-beanutils-1.7.0.jar"/>
    77        <classpathentry exported="true" kind="lib" path="lib/commons-pool-1.5.4.jar"/>
    8         <classpathentry exported="true" kind="lib" path="lib/gt-api-10.5.jar"/>
    9         <classpathentry exported="true" kind="lib" path="lib/gt-coverage-10.5.jar"/>
    10         <classpathentry exported="true" kind="lib" path="lib/gt-data-10.5.jar"/>
    11         <classpathentry exported="true" kind="lib" path="lib/gt-epsg-extension-10.5.jar"/>
    12         <classpathentry exported="true" kind="lib" path="lib/gt-epsg-hsql-10.5.jar"/>
    13         <classpathentry exported="true" kind="lib" path="lib/gt-geotiff-10.5.jar"/>
    14         <classpathentry exported="true" kind="lib" path="lib/gt-main-10.5.jar"/>
    15         <classpathentry exported="true" kind="lib" path="lib/gt-metadata-10.5.jar"/>
    16         <classpathentry exported="true" kind="lib" path="lib/gt-opengis-10.5.jar"/>
    17         <classpathentry exported="true" kind="lib" path="lib/gt-referencing-10.5.jar"/>
    18         <classpathentry exported="true" kind="lib" path="lib/gt-shapefile-10.5.jar"/>
    19         <classpathentry exported="true" kind="lib" path="lib/hsqldb-1.8.0.7.jar"/>
    20         <classpathentry exported="true" kind="lib" path="lib/imageio-ext-tiff-1.1.8.jar"/>
    21         <classpathentry exported="true" kind="lib" path="lib/imageio-ext-utilities-1.1.8.jar"/>
     8        <classpathentry exported="true" kind="lib" path="lib/gt-api-11.2.jar"/>
     9        <classpathentry exported="true" kind="lib" path="lib/gt-coverage-11.2.jar"/>
     10        <classpathentry exported="true" kind="lib" path="lib/gt-data-11.2.jar"/>
     11        <classpathentry exported="true" kind="lib" path="lib/gt-epsg-extension-11.2.jar"/>
     12        <classpathentry exported="true" kind="lib" path="lib/gt-epsg-hsql-11.2.jar"/>
     13        <classpathentry exported="true" kind="lib" path="lib/gt-geotiff-11.2.jar"/>
     14        <classpathentry exported="true" kind="lib" path="lib/gt-main-11.2.jar"/>
     15        <classpathentry exported="true" kind="lib" path="lib/gt-metadata-11.2.jar"/>
     16        <classpathentry exported="true" kind="lib" path="lib/gt-opengis-11.2.jar"/>
     17        <classpathentry exported="true" kind="lib" path="lib/gt-referencing-11.2.jar"/>
     18        <classpathentry exported="true" kind="lib" path="lib/gt-shapefile-11.2.jar"/>
     19        <classpathentry exported="true" kind="lib" path="lib/hsqldb-2.2.8.jar"/>
     20        <classpathentry exported="true" kind="lib" path="lib/imageio-ext-tiff-1.1.10.jar"/>
     21        <classpathentry exported="true" kind="lib" path="lib/imageio-ext-utilities-1.1.10.jar"/>
    2222        <classpathentry exported="true" kind="lib" path="lib/jai_codec-1.1.3.jar"/>
    2323        <classpathentry exported="true" kind="lib" path="lib/jai_core-1.1.3.jar"/>
    2424        <classpathentry exported="true" kind="lib" path="lib/jai_imageio-1.1.jar"/>
    25         <classpathentry exported="true" kind="lib" path="lib/jdom-1.0.jar"/>
     25        <classpathentry exported="true" kind="lib" path="lib/jdom-1.1.3.jar"/>
    2626        <classpathentry exported="true" kind="lib" path="lib/jsr-275-1.0-beta-2.jar"/>
    2727        <classpathentry exported="true" kind="lib" path="lib/jt-contour-1.3.1.jar"/>
  • applications/editors/josm/plugins/geotools/README

    r30318 r30569  
    44    * Licensed under GPL v3 (see LICENSE)
    55
    6 The current embedded version of GeoTools is 10.5.
     6The current embedded version of GeoTools is 11.2.
  • applications/editors/josm/plugins/geotools/src/org/openstreetmap/josm/plugins/geotools/GeoToolsPlugin.java

    r30349 r30569  
    1111import org.opengis.referencing.FactoryException;
    1212import org.opengis.referencing.NoSuchAuthorityCodeException;
     13import org.openstreetmap.josm.Main;
    1314import org.openstreetmap.josm.plugins.Plugin;
    1415import org.openstreetmap.josm.plugins.PluginInformation;
     
    7475            CRS.decode("EPSG:4326");
    7576        } catch (NoSuchAuthorityCodeException e) {
    76             System.err.println("geotools: error in EPSG database initialization. NoSuchAuthorityCodeException: "+e.getMessage());
     77            Main.error("geotools: error in EPSG database initialization. NoSuchAuthorityCodeException: "+e.getMessage());
    7778        } catch (FactoryException e) {
    78             System.err.println("geotools: error in EPSG database initialization. FactoryException: "+e.getMessage());
     79            Main.error("geotools: error in EPSG database initialization. FactoryException: "+e.getMessage());
    7980        }
    8081    }
Note: See TracChangeset for help on using the changeset viewer.