Skip to content

Commit

Permalink
Fix problem in build in 2.1 (#3464)
Browse files Browse the repository at this point in the history
  • Loading branch information
serras authored Jul 4, 2024
1 parent c860806 commit 90310e8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions arrow-libs/fx/arrow-fx-stm/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi
import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile


plugins {
Expand All @@ -23,7 +22,10 @@ apply(from = property("ANIMALSNIFFER_MPP"))

kotlin {
@OptIn(ExperimentalKotlinGradlePluginApi::class)
compilerOptions.freeCompilerArgs.add("-Xexpect-actual-classes")
compilerOptions {
freeCompilerArgs.add("-Xexpect-actual-classes")
freeCompilerArgs.add("-Xconsistent-data-class-copy-visibility")
}

sourceSets {
commonMain {
Expand Down

0 comments on commit 90310e8

Please sign in to comment.