Skip to content

Commit

Permalink
UPDATE_KOTLIN_VERSION: 1.9.0-RC
Browse files Browse the repository at this point in the history
  • Loading branch information
neetopia committed Jun 21, 2023
1 parent f4eb576 commit 5272679
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Expand Up @@ -424,6 +424,9 @@ class KspGradleSubplugin @Inject internal constructor(private val registry: Tool
configurePluginOptions(kspTask)
kspTask.compilerOptions.noJdk.value(kotlinCompileTask.compilerOptions.noJdk)
kspTask.compilerOptions.verbose.convention(kotlinCompilation.compilerOptions.options.verbose)
// Read from kotlinCompileTask's language version as
// kspTask's language version is yet to be configured by configurator.
kspTask.compilerOptions.languageVersion.value(kotlinCompileTask.compilerOptions.languageVersion)
configureLanguageVersion(kspTask)
if (kspTask.classpathSnapshotProperties.useClasspathSnapshot.get() == false) {
kspTask.compilerOptions.moduleName.convention(
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,7 +1,7 @@
# Copied from kotlinc
org.gradle.jvmargs=-Duser.country=US -Dkotlin.daemon.jvm.options=-Xmx2200m -Dfile.encoding=UTF-8

kotlinBaseVersion=1.9.0-Beta
kotlinBaseVersion=1.9.0-RC
agpBaseVersion=7.0.0
intellijVersion=213.7172.25
junitVersion=4.12
Expand Down

0 comments on commit 5272679

Please sign in to comment.