Beta version of Kalamar-OpenThesarus-Plugin created!

Change-Id: Ic5d70f5adaa65c3ea3e5dfef5be032a0581c5d76
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..74db2ef
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>

+<project xmlns="http://maven.apache.org/POM/4.0.0"

+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

+    <modelVersion>4.0.0</modelVersion>

+

+    <parent>

+        <groupId>org.springframework.boot</groupId>

+        <artifactId>spring-boot-starter-parent</artifactId>

+        <version>2.5.6</version>

+        <relativePath/> <!-- lookup parent from repository -->

+    </parent>

+

+    <groupId>java.de.ids-mannheim.korap</groupId>

+    <artifactId>openthesaurus</artifactId>

+    <version>1.0-SNAPSHOT</version>

+

+    <properties>

+        <java.version>16</java.version>

+        <maven.compiler.source>16</maven.compiler.source>

+        <maven.compiler.target>16</maven.compiler.target>

+    </properties>

+

+    <dependencies>

+        <dependency>

+            <groupId>org.springframework.boot</groupId>

+            <artifactId>spring-boot-starter-web</artifactId>

+        </dependency>

+

+        <dependency>

+            <groupId>org.springframework.boot</groupId>

+            <artifactId>spring-boot-starter-test</artifactId>

+            <scope>test</scope>

+        </dependency>

+    </dependencies>

+

+    <build>

+        <plugins>

+            <plugin>

+                <groupId>org.springframework.boot</groupId>

+                <artifactId>spring-boot-maven-plugin</artifactId>

+            </plugin>

+        </plugins>

+    </build>

+    

+</project>
\ No newline at end of file