Skip to content

Commit

Permalink
Mark kotlinProcessors as unresolvable (#986)
Browse files Browse the repository at this point in the history
  • Loading branch information
timyates authored Apr 26, 2024
1 parent d8b98c8 commit 8b7be86
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public static void configureKotlin(Project project) {
PluginManager pluginManager = project.getPluginManager();
final TaskContainer tasks = project.getTasks();
project.getConfigurations().create(KOTLIN_PROCESSORS, conf -> {
conf.setCanBeConsumed(false);
conf.setCanBeResolved(false);
conf.setCanBeConsumed(false);
});
tasks.withType(KotlinCompile.class).configureEach(kotlinCompile -> {
Expand Down

0 comments on commit 8b7be86

Please sign in to comment.