diff --git a/build.gradle.kts b/build.gradle.kts
index 36c6a8e889f927be41922a25cba1488c21d3c3ce..f02ca549157fa80031749b6de860c16175c8d9ba 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -24,6 +24,8 @@ repositories {
 
 }
 
+
+
 dependencies {
     // Align versions of all Kotlin components
     implementation(platform("org.jetbrains.kotlin:kotlin-bom"))
@@ -60,11 +62,20 @@ dependencies {
 }
 
 
+
+
+
 tasks.test {
     useJUnitPlatform()
 }
 
 val gitVersion: groovy.lang.Closure<*> by extra
+
+tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>(){
+    kotlinOptions.jvmTarget = "1.8"
+}
+
+
 tasks.shadowJar{
   //  this.version = gitVersion().toString()
 }