This repository has been archived by the owner on May 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 81
Support elastic search7 travis fix - support platforms. #98
Open
pablotdl
wants to merge
13
commits into
allegro:master
Choose a base branch
from
pablotdl:supportElasticSearch7TravisFix
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 11 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
8a73dc0
add support for es 7.x
4df0850
add es 7.3 unit tests
b304743
Update README.md
eynand 5bd0d56
Update README.md
eynand 0f12d09
Update README.md
eynand a82f106
Change dist to trusty
bekihm 5794b0d
Added support for downloading platform specific versions of elastic s…
pablosaavedra-rappi f434fc2
Setting executable permission if nedded and fixed a bug when download…
pablosaavedra-rappi 883a33c
Another attempt to fix tests
pablosaavedra-rappi 5fbf7dd
Another file that needs to be executable
pablosaavedra-rappi b42153a
This is probably too hacky by now, but for some reason zip files are …
pablosaavedra-rappi 43b15ff
Fixed code review comments
pablosaavedra-rappi bf62032
Replaced deprecated plugin
pablosaavedra-rappi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
language: java | ||
script: | ||
dist: trusty | ||
script: | ||
- ./gradlew clean check --info | ||
jdk: | ||
- oraclejdk8 |
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
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
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
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
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
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 |
---|---|---|
|
@@ -30,4 +30,4 @@ public String getType() { | |
public JsonNode getMapping() { | ||
return mapping; | ||
} | ||
} | ||
} |
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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
dependencies { | ||
testCompile project(':test-base') | ||
|
||
testCompile group: 'org.elasticsearch', name: 'elasticsearch', version: '7.3.2' | ||
testCompile group: 'org.elasticsearch.client', name: 'elasticsearch-rest-high-level-client', version: '7.3.2' | ||
testCompile group: 'org.elasticsearch.client', name: 'elasticsearch-rest-client', version: '7.3.2' | ||
testCompile group: 'org.locationtech.spatial4j', name: 'spatial4j', version: '0.6' | ||
testCompile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.6.2' | ||
testCompile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.6.2' | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What happens with elasticsearch version above 9? Can we use split with '.' sign to use the structure of the version number?