Skip to content

Commit be4b78a

Browse files
authored
Make generateSourcesDuringGradleSync opt-in now that we have the IJ plugin (#5117)
1 parent 0a5d12d commit be4b78a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/apollo-gradle-plugin-external/src/main/kotlin/com/apollographql/apollo3/gradle/internal/DefaultApolloExtension.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ abstract class DefaultApolloExtension(
234234
}
235235

236236
codegenOnGradleSyncConfigured = true
237-
if (this.generateSourcesDuringGradleSync.getOrElse(true)) {
237+
if (this.generateSourcesDuringGradleSync.getOrElse(false)) {
238238
project.tasks.maybeCreate("prepareKotlinIdeaImport").dependsOn(generateApolloSources)
239239
}
240240
}

0 commit comments

Comments
 (0)