Update dependencies

Change-Id: I01695238fec7a116077bffa4ecad490d7b73fd6d
diff --git a/app/build.gradle b/app/build.gradle
index 6ceb419..ca078d2 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,6 +1,6 @@
 plugins {
     // Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin.
-    id 'org.jetbrains.kotlin.jvm' version '2.2.10'
+    id 'org.jetbrains.kotlin.jvm' version '2.2.21'
 
     // Apply the application plugin to add support for building a CLI application in Java.
     id 'application'
@@ -27,7 +27,7 @@
     implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2'
 
     // This dependency is used by the application.
-    implementation 'com.google.guava:guava:33.4.0-jre'
+    implementation 'com.google.guava:guava:33.5.0-jre'
 
 
     implementation ("info.picocli:picocli:4.7.7")
@@ -37,11 +37,11 @@
 
     // Use the Kotlin JUnit integration.
     testImplementation 'org.jetbrains.kotlin:kotlin-test-junit'
-    testImplementation "org.jetbrains.kotlin:kotlin-test:2.2.10"
+    testImplementation "org.jetbrains.kotlin:kotlin-test:2.2.21"
 
     implementation 'com.github.kupietz:cistern:v1.0.4'
     implementation 'org.maltparser:maltparser:1.9.2'
-    implementation 'org.apache.opennlp:opennlp-tools:2.5.5'
+    implementation 'org.apache.opennlp:opennlp-tools:2.5.6'
     implementation 'org.slf4j:slf4j-simple:2.0.17'
     implementation 'org.apache.ant:ant:1.10.15'
     implementation 'org.apache.commons:commons-compress:1.28.0'
@@ -84,12 +84,20 @@
 
     manifest.attributes(
             'Class-Path': configurations.compileClasspath.collect { it.getName() }.join(' '),
-            'Main-Class': "de.ids_mannheim.korapxmltools.KorapXmlToolKt"
+            'Main-Class': "de.ids_mannheim.korapxmltools.KorapXmlToolKt",
+            'Implementation-Title': rootProject.name,
+            'Implementation-Version': project.version
     )
     shadowJar {
         archiveBaseName.set('korapxmltool')
         archiveClassifier.set('')
-        archiveVersion.set('')
+        // Version ins Dateinamen aufnehmen
+        archiveVersion.set(project.version.toString())
+        manifest.attributes(
+            'Main-Class': "de.ids_mannheim.korapxmltools.KorapXmlToolKt",
+            'Implementation-Title': rootProject.name,
+            'Implementation-Version': project.version
+        )
     }
 }