diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index f9e5cfe..0a382d7 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -8,7 +8,7 @@ ksp = "2.3.3" kgp-compile-only = "1.9.0" compile-sdk = "36" agp9 = "9.0.1" -nmcp = "1.3.1-SNAPSHOT-bd3a2d8eeaa63dce9dfc2c9d8b63f4a2a98a50e7" +nmcp = "1.4.4" [libraries] #noinspection AndroidGradlePluginVersion diff --git a/tapmoc-gradle-plugin/build.gradle.kts b/tapmoc-gradle-plugin/build.gradle.kts index 550ede1..809ff41 100644 --- a/tapmoc-gradle-plugin/build.gradle.kts +++ b/tapmoc-gradle-plugin/build.gradle.kts @@ -8,6 +8,13 @@ plugins { Librarian.module(project) +kotlin { + compilerOptions { + // "Language version 2.0 is deprecated and its support will be removed in a future version of Kotlin" + freeCompilerArgs.add("-Xsuppress-version-warnings") + } +} + val optionalPlugins = mapOf( "agp" to libs.agp, "kgp" to libs.kgp.compile.only,