Exclude kotlin-stdlib dependency from utils generated .pom

Signed-off-by: utzcoz <utzcoz@outlook.com>
diff --git a/gradle.properties b/gradle.properties
index ddff2c7..7329dc2 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -30,6 +30,7 @@
 asmVersion=9.2
 
 kotlinVersion=1.5.20
+kotlin.stdlib.default.dependency=false
 
 autoServiceVersion=1.0-rc6
 multidexVersion=2.0.1
diff --git a/integration_tests/mockito-kotlin/build.gradle b/integration_tests/mockito-kotlin/build.gradle
index de6ff2f..4ab38ca 100644
--- a/integration_tests/mockito-kotlin/build.gradle
+++ b/integration_tests/mockito-kotlin/build.gradle
@@ -20,5 +20,6 @@
     testImplementation "androidx.test.ext:junit:$axtJunitVersion"
     testImplementation "junit:junit:$junitVersion"
     testImplementation "com.google.truth:truth:$truthVersion"
+    testImplementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
     testImplementation "org.mockito:mockito-core:$mockitoVersion"
 }
diff --git a/integration_tests/sparsearray/build.gradle b/integration_tests/sparsearray/build.gradle
index 9c5cbb9..4aee7f6 100644
--- a/integration_tests/sparsearray/build.gradle
+++ b/integration_tests/sparsearray/build.gradle
@@ -43,4 +43,5 @@
     testImplementation project(":robolectric")
     testImplementation "junit:junit:$junitVersion"
     testImplementation "com.google.truth:truth:$truthVersion"
+    testImplementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
 }
diff --git a/utils/build.gradle b/utils/build.gradle
index 5373ff3..14cb7c5 100644
--- a/utils/build.gradle
+++ b/utils/build.gradle
@@ -30,5 +30,6 @@
 
     testImplementation "junit:junit:${junitVersion}"
     testImplementation "com.google.truth:truth:${truthVersion}"
+    testImplementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
     testImplementation "org.mockito:mockito-core:${mockitoVersion}"
 }
\ No newline at end of file