Index: /applications/editors/josm/plugins/MicrosoftStreetside/gradle.properties
===================================================================
--- /applications/editors/josm/plugins/MicrosoftStreetside/gradle.properties	(revision 36277)
+++ /applications/editors/josm/plugins/MicrosoftStreetside/gradle.properties	(revision 36278)
@@ -9,5 +9,5 @@
 # Minimum required JOSM version to run this plugin, choose the lowest version possible that is compatible.
 # You can check if the plugin compiles against this version by executing `./gradlew compileJava_minJosm`.
-plugin.main.version=18877
+plugin.main.version=19044
 #plugin.version=
 # Version of JOSM against which the plugin is compiled
Index: /applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/io/export/StreetsideExportWriterThread.java
===================================================================
--- /applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/io/export/StreetsideExportWriterThread.java	(revision 36277)
+++ /applications/editors/josm/plugins/MicrosoftStreetside/src/org/openstreetmap/josm/plugins/streetside/io/export/StreetsideExportWriterThread.java	(revision 36278)
@@ -13,6 +13,4 @@
 import javax.imageio.ImageIO;
 
-import org.apache.commons.imaging.ImageReadException;
-import org.apache.commons.imaging.ImageWriteException;
 import org.apache.commons.imaging.common.RationalNumber;
 import org.apache.commons.imaging.formats.jpeg.exif.ExifRewriter;
@@ -80,5 +78,5 @@
 
                 exifDirectory = outputSet.getOrCreateExifDirectory();
-                gpsDirectory = outputSet.getOrCreateGPSDirectory();
+                gpsDirectory = outputSet.getOrCreateGpsDirectory();
 
                 gpsDirectory.removeField(GpsTagConstants.GPS_TAG_GPS_IMG_DIRECTION_REF);
@@ -91,5 +89,5 @@
                 exifDirectory.removeField(ExifTagConstants.EXIF_TAG_DATE_TIME_ORIGINAL);
 
-                outputSet.setGPSInDegrees(mimg.lon(), mimg.lat());
+                outputSet.setGpsInDegrees(mimg.lon(), mimg.lat());
                 try (OutputStream os = new BufferedOutputStream(new FileOutputStream(finalPath + ".jpg"))) {
                     new ExifRewriter().updateExifMetadataLossless(imageBytes, os, outputSet);
@@ -99,5 +97,5 @@
                 LOGGER.info("Streetside export cancelled");
                 return;
-            } catch (IOException | ImageReadException | ImageWriteException e) {
+            } catch (IOException e) {
                 LOGGER.log(Logging.LEVEL_ERROR, e.getMessage(), e);
             }
