clean up
This commit is contained in:
parent
69bd4d9064
commit
9c5c99d770
2 changed files with 4 additions and 83 deletions
82
README.md
82
README.md
|
@ -1,82 +0,0 @@
|
|||
![Helper](https://github.com/jprante/elasticsearch-helper/raw/master/src/site/resources/helper.jpg)
|
||||
|
||||
# Elasticsearch helper plugin
|
||||
|
||||
This plugin offers some Java helper classes for easier use of Elasticsearch API.
|
||||
|
||||
## Compatibility matrix
|
||||
|
||||
| Elasticsearch | Plugin | Release date |
|
||||
| ----------------- | -------------- | -------------|
|
||||
| 2.4.1 | 2.4.1.0 | Oct 4, 2016 |
|
||||
| 2.4.0 | 2.4.0.0 | Oct 4, 2016 |
|
||||
| 2.3.5 | 2.3.5.0 | Aug 4, 2016 |
|
||||
| 2.3.3 | 2.3.3.1 | Jul 6, 2016 |
|
||||
| 2.3.3 | 2.3.3.0 | May 23, 2016 |
|
||||
| 2.3.2 | 2.3.2.0 | May 9, 2016 |
|
||||
| 2.3.1 | 2.3.1.1 | May 9, 2016 |
|
||||
| 2.3.1 | 2.3.1.0 | Apr 9, 2016 |
|
||||
| 2.3.0 | 2.3.0.0 | Apr 9, 2016 |
|
||||
| 2.2.1 | 2.2.1.1 | Mar 30, 2016 |
|
||||
| 2.2.0 | 2.2.0.5 | Mar 15, 2016 |
|
||||
| 2.2.0 | 2.2.0.4 | Mar 10, 2016 |
|
||||
| 2.2.0 | 2.2.0.3 | Feb 16, 2016 |
|
||||
| 2.2.0 | 2.2.0.2 | Feb 12, 2016 |
|
||||
| 2.2.0 | 2.2.0.0 | Feb 3, 2016 |
|
||||
| 2.1.1 | 2.1.1.0 | Dec 21, 2015 |
|
||||
| 2.1.0 | 2.1.0.0 | Nov 29, 2015 |
|
||||
| 2.0.0 | 2.0.0.2 | Nov 3, 2015 |
|
||||
| 2.0.0 | 2.0.0.1 | Oct 29, 2015 |
|
||||
| 2.0.0 | 2.0.0.0 | Oct 28, 2015 |
|
||||
| 1.6.0 | 1.6.0.0 | Jul 1, 2015 |
|
||||
| 1.5.2 | 1.5.2.2 | May 11, 2015 |
|
||||
| 1.5.2 | 1.5.2.1 | May 3, 2015 |
|
||||
| 1.5.1 | 1.5.1.0 | Apr 23, 2015 |
|
||||
| 1.3.1 | 1.3.0.3 | Aug 8, 2014 |
|
||||
| 1.3.1 | 1.3.0.1 | Aug 4, 2014 |
|
||||
| 1.3.0 | 1.3.0.0 | Jul 23, 2014 |
|
||||
| 1.2.2 | 1.2.2.0 | Jul 19, 2014 |
|
||||
| 1.2.1 | 1.2.1.0 | Jun 4, 2014 |
|
||||
| 1.2.0 | 1.2.0.1 | May 28, 2014 |
|
||||
| 1.2.0 | 1.2.0.0 | May 22, 2014 |
|
||||
| 1.1.0 | 1.1.0.7 | May 11, 2014 |
|
||||
| 1.0.0.RC2 | 1.0.0.RC2.1 | Feb 3, 2014 |
|
||||
| 0.90.7 | 0.90.7.1 | Dec 3, 2013 |
|
||||
| 0.20.6 | 0.20.6.1 | Feb 4, 2014 |
|
||||
| 0.19.11.2 | 0.19.11.2 | Feb 1, 2013 |
|
||||
|
||||
## Installation 2.x
|
||||
|
||||
./bin/plugin install http://xbib.org/repository/org/xbib/elasticsearch/plugin/elasticsearch-helper/2.3.3.1/elasticsearch-helper-2.3.3.1-plugin.zip
|
||||
|
||||
## Installation 1.x
|
||||
|
||||
./bin/plugin -install helper -url http://xbib.org/repository/org/xbib/elasticsearch/plugin/elasticsearch-helper/1.6.0.0/elasticsearch-helper-1.6.0.0.zip
|
||||
|
||||
Do not forget to restart the node after installing.
|
||||
|
||||
## Project docs
|
||||
|
||||
The Maven project site is available at `Github <http://jprante.github.io/elasticsearch-helper>`_
|
||||
|
||||
## Issues
|
||||
|
||||
All feedback is welcome! If you find issues, please post them at `Github <https://github.com/jprante/elasticsearch-helper/issues>`_
|
||||
|
||||
# License
|
||||
|
||||
Elasticsearch Helper Plugin (formerly Elasticsearch Support Plugin)
|
||||
|
||||
Copyright (C) 2013 Jörg Prante
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
|
@ -28,7 +28,10 @@ task sonaTypeUpload(type: Upload) {
|
|||
authentication(userName: ossrhUsername, password: ossrhPassword)
|
||||
}
|
||||
pom.project {
|
||||
name name
|
||||
groupId project.group
|
||||
artifactId project.name
|
||||
version project.version
|
||||
name project.name
|
||||
description description
|
||||
packaging 'jar'
|
||||
inceptionYear '2012'
|
||||
|
|
Loading…
Reference in a new issue