Skip to content
This repository was archived by the owner on Mar 4, 2019. It is now read-only.

ES 1.7 compatibility #52

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ deploy.sh
data/
/.local-execution-hints.log
/.local-*-execution-hints.log
.idea/
*.iml
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ env:
- ES_VERSION=1.5.0
- ES_VERSION=1.5.1
- ES_VERSION=1.5.2
- ES_VERSION=1.7.0
cache:
directories:
- $HOME/.m2
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ There is no way to configure this on a per index basis.

| Http Basic Plugin | elasticsearch |
|-----------------------------|-----------------------|
| v1.5.0(master) | 1.5.x |
| v1.7.0(master) | 1.7.0 |
| v1.5.0 | 1.5.x |
| v1.4.0 | 1.4.0 |
| v1.3.0 | 1.3.0 |
| v1.2.0 | 1.2.0 |
Expand Down
14 changes: 4 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
exmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.asquera.elasticsearch</groupId>
<artifactId>elasticsearch-http-basic</artifactId>
<version>1.5.0</version>
<version>1.7.0</version>
<packaging>jar</packaging>
<name>Elasticsearch Http Basic plugin</name>
<description>Adds HTTP Basic authentication (BA) to your Elasticsearch cluster</description>
Expand All @@ -15,7 +15,7 @@
<parent>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch-parent</artifactId>
<version>1.5.0</version>
<version>1.7.0</version>
</parent>

<properties>
Expand Down Expand Up @@ -88,11 +88,5 @@
</plugins>
</build>

<repositories>
<repository>
<id>oss-snapshots</id>
<name>Sonatype OSS Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>

</project>
Loading