Skip to content

Commit

Permalink
[7.x] Fix Gradle integration with Intellij IDEA (elastic#78290)
Browse files Browse the repository at this point in the history
In elastic#76897 the `hadoop-common` module was renamed to `hadoop-client-ide`, but
the change wasn't reflected in `elasticsearch.ide.gradle` script.
Because of that an IDE import started failing with the
`Task with path ':plugins:repository-hdfs:hadoop-common:shadowJar" not found` error.
  • Loading branch information
arteam committed Oct 11, 2021
1 parent 09dc4a4 commit a63bdaf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ if (providers.systemProperty('idea.active').forUseAtConfigurationTime().getOrNul
tasks.register('buildDependencyArtifacts') {
group = 'ide'
description = 'Builds artifacts needed as dependency for IDE modules'
dependsOn ':plugins:repository-hdfs:hadoop-common:shadowJar', ':plugins:repository-azure:azure-storage-blob:shadowJar'
dependsOn ':plugins:repository-hdfs:hadoop-client-api:shadowJar', ':plugins:repository-azure:azure-storage-blob:shadowJar'
}

idea {
Expand Down

0 comments on commit a63bdaf

Please sign in to comment.