-
Notifications
You must be signed in to change notification settings - Fork 24.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix libs:ssl-config project setup (#39074)
The build script file for the `:libs:elasticsearch-ssl-config` and `:libs:ssl-config-tests` projects was incorrectly named `eclipse.build.gradle` while the expected name was `eclipse-build.gradle`. In addition, this also adds a missing snippet in the `build.gradle` conf file, that fixes the project setup for Eclipse users.
- Loading branch information
1 parent
6bc88b0
commit 5c30446
Showing
3 changed files
with
17 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../ssl-config/src/main/eclipse.build.gradle → .../ssl-config/src/main/eclipse-build.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
// this is just shell gradle file for eclipse to have separate projects for geo src and tests | ||
// this is just shell gradle file for eclipse to have separate projects for ssl-config src and tests | ||
apply from: '../../build.gradle' |
4 changes: 2 additions & 2 deletions
4
.../ssl-config/src/test/eclipse.build.gradle → .../ssl-config/src/test/eclipse-build.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// this is just shell gradle file for eclipse to have separate projects for geo src and tests | ||
// this is just shell gradle file for eclipse to have separate projects for ssl-config src and tests | ||
apply from: '../../build.gradle' | ||
dependencies { | ||
testCompile project(':libs:elasticsearch-ssl-config') | ||
} | ||
} |