Merge "Improve readibility of export button closes #138"
diff --git a/Changes b/Changes
index 5cc9ed9..fe3c587 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,6 @@
+0.2.6 2021-07-23
+    - Fix xml binding for newer java versions.
+
 0.2.5 2021-05-27
     - Silence logging in tests.
     - Sanitize CSV export for security reasons.
diff --git a/README.md b/README.md
index b735613..f677e18 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@
 
 Kalamar-Plugin-Export is a web service that integrates in the plugin framework of
 [Kalamar](https://github.com/KorAP/Kalamar), to export matches for the
-[KorAP Corpus Analysis Platform](http://korap.ids-mannheim.de/) in various formats.
+[KorAP Corpus Analysis Platform](https://korap.ids-mannheim.de/) in various formats.
 Currently supported are **RTF**, **CSV**, and **JSON**.
 
 Kalamar-Plugin-Export is meant to be a basic export plugin and should
@@ -82,11 +82,11 @@
 
 ## License
 
-Copyright (c) 2020, [IDS Mannheim](http://ids-mannheim.de/), Germany
+Copyright (c) 2020-2021, [IDS Mannheim](https://www.ids-mannheim.de/), Germany
 
-Kalamar-Plugin-Export is developed as part of the [KorAP](http://korap.ids-mannheim.de/)
+Kalamar-Plugin-Export is developed as part of the [KorAP](https://korap.ids-mannheim.de/)
 Corpus Analysis Platform at the Leibniz Institute for the German Language
-([IDS](http://ids-mannheim.de/)).
+([IDS](https://www.ids-mannheim.de/)).
 
 Kalamar-Plugin-Export is published under the
 [BSD-2 License](https://raw.githubusercontent.com/KorAP/Kalamar-Plugin-Export/master/LICENSE).
diff --git a/pom.xml b/pom.xml
index 50ea1e2..3b2b5ec 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
   <groupId>de.ids_mannheim.korap</groupId>
   <artifactId>KalamarExportPlugin</artifactId>
   <packaging>jar</packaging>
-  <version>0.2.5</version>
+  <version>0.2.6</version>
   <name>KalamarExportPlugin</name>
   <url>http://maven.apache.org</url>
   
@@ -121,7 +121,14 @@
       <artifactId>tinylog-api</artifactId>
       <version>2.4.0-M1</version>
     </dependency>
-    
+
+    <!-- API, java.xml.bind module -->
+    <dependency>
+      <groupId>javax.xml.bind</groupId>
+      <artifactId>jaxb-api</artifactId>
+      <version>2.3.1</version>
+    </dependency>
+
   </dependencies>
   
   <build>
diff --git a/src/main/java/de/ids_mannheim/korap/plkexport/ExWSConf.java b/src/main/java/de/ids_mannheim/korap/plkexport/ExWSConf.java
index 7dc6f27..a491ae5 100644
--- a/src/main/java/de/ids_mannheim/korap/plkexport/ExWSConf.java
+++ b/src/main/java/de/ids_mannheim/korap/plkexport/ExWSConf.java
@@ -20,7 +20,7 @@
     // Version of Export Plugin
     public static final int VERSION_MAJOR = 0;
     public static final int VERSION_MINOR = 2;
-    public static final int VERSION_PATCHLEVEL = 5;
+    public static final int VERSION_PATCHLEVEL = 6;
 
     private static Properties prop;