mirror of
https://github.com/spring-projects/spring-data-elasticsearch.git
synced 2025-06-24 04:52:12 +00:00
DATAES-90 - Prepare 1.0 GA.
Tweaked README.md. Replaced Docbook index.xml as it apparently used a different encoding scheme.
This commit is contained in:
parent
8fbd00dfa7
commit
407768ac7f
26
README.md
26
README.md
@ -10,18 +10,18 @@ The Spring Data Elasticsearch project provides integration with the [elasticsear
|
|||||||
Guide
|
Guide
|
||||||
------------
|
------------
|
||||||
|
|
||||||
* [Reference Documentation](http://docs.spring.io/spring-data/elasticsearch/docs/1.0.0.M2/reference/html/)
|
* [Reference Documentation](http://docs.spring.io/spring-data/elasticsearch/docs/current/reference/html/)
|
||||||
* [PDF Documentation](http://docs.spring.io/spring-data/elasticsearch/docs/1.0.0.M2/reference/pdf/spring-data-elasticsearch-reference.pdf)
|
* [PDF Documentation](http://docs.spring.io/spring-data/elasticsearch/docs/current/reference/pdf/spring-data-elasticsearch-reference.pdf)
|
||||||
* [API Documentation](http://docs.spring.io/spring-data/elasticsearch/docs/1.0.0.M2/api/)
|
* [API Documentation](http://docs.spring.io/spring-data/elasticsearch/docs/current/api/)
|
||||||
* [Spring Data Project](http://project.spring.io/spring-data)
|
* [Spring Data Project](http://project.spring.io/spring-data)
|
||||||
* [Sample Test Application](https://github.com/BioMedCentralLtd/spring-data-elasticsearch-sample-application)
|
* [Sample Test Application](https://github.com/BioMedCentralLtd/spring-data-elasticsearch-sample-application)
|
||||||
* [Spring Data Elasticsearch Google Group] (https://groups.google.com/d/forum/spring-data-elasticsearch-devs)
|
* [Spring Data Elasticsearch Google Group](https://groups.google.com/d/forum/spring-data-elasticsearch-devs)
|
||||||
* For more detailed questions, use the [forum](http://forum.springsource.org/forumdisplay.php?f=80).
|
* For more detailed questions, use the [forum](http://forum.springsource.org/forumdisplay.php?f=80).
|
||||||
|
|
||||||
|
|
||||||
Quick Start
|
Quick Start
|
||||||
-----------
|
-----------
|
||||||
Wiki page for [Getting Started] (https://github.com/spring-projects/spring-data-elasticsearch/wiki/How-to-start-with-spring-data-elasticsearch)
|
Wiki page for [Getting Started](https://github.com/spring-projects/spring-data-elasticsearch/wiki/How-to-start-with-spring-data-elasticsearch)
|
||||||
|
|
||||||
### Maven configuration
|
### Maven configuration
|
||||||
|
|
||||||
@ -31,14 +31,8 @@ Add the Maven dependency:
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.data</groupId>
|
<groupId>org.springframework.data</groupId>
|
||||||
<artifactId>spring-data-elasticsearch</artifactId>
|
<artifactId>spring-data-elasticsearch</artifactId>
|
||||||
<version>1.0.0.RC1</version>
|
<version>1.0.0.RELEASE</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<repository>
|
|
||||||
<id>spring-libs-milestone</id>
|
|
||||||
<name>Spring Milestone Repository</name>
|
|
||||||
<url>http://repo.spring.io/libs-milestone</url>
|
|
||||||
</repository>
|
|
||||||
```
|
```
|
||||||
|
|
||||||
If you'd rather like the latest snapshots of the upcoming major version, use our Maven snapshot repository and declare
|
If you'd rather like the latest snapshots of the upcoming major version, use our Maven snapshot repository and declare
|
||||||
@ -193,8 +187,8 @@ Using Node Client
|
|||||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xmlns:elasticsearch="http://www.springframework.org/schema/data/elasticsearch"
|
xmlns:elasticsearch="http://www.springframework.org/schema/data/elasticsearch"
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch http://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch-1.0.xsd
|
xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch http://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd
|
||||||
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd">
|
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
|
||||||
|
|
||||||
<elasticsearch:node-client id="client" local="true"/>
|
<elasticsearch:node-client id="client" local="true"/>
|
||||||
|
|
||||||
@ -212,8 +206,8 @@ Using Transport Client
|
|||||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xmlns:elasticsearch="http://www.springframework.org/schema/data/elasticsearch"
|
xmlns:elasticsearch="http://www.springframework.org/schema/data/elasticsearch"
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch http://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch-1.0.xsd
|
xsi:schemaLocation="http://www.springframework.org/schema/data/elasticsearch http://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch.xsd
|
||||||
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd">
|
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
|
||||||
|
|
||||||
<elasticsearch:repositories base-package="com.xyz.acme"/>
|
<elasticsearch:repositories base-package="com.xyz.acme"/>
|
||||||
|
|
||||||
|
8
pom.xml
8
pom.xml
@ -9,7 +9,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>org.springframework.data.build</groupId>
|
<groupId>org.springframework.data.build</groupId>
|
||||||
<artifactId>spring-data-parent</artifactId>
|
<artifactId>spring-data-parent</artifactId>
|
||||||
<version>1.4.0.BUILD-SNAPSHOT</version>
|
<version>1.4.0.RELEASE</version>
|
||||||
<relativePath>../spring-data-build/parent/pom.xml</relativePath>
|
<relativePath>../spring-data-build/parent/pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
@ -24,7 +24,7 @@
|
|||||||
<commonscollections>3.2.1</commonscollections>
|
<commonscollections>3.2.1</commonscollections>
|
||||||
<commonslang>2.6</commonslang>
|
<commonslang>2.6</commonslang>
|
||||||
<elasticsearch>1.1.1</elasticsearch>
|
<elasticsearch>1.1.1</elasticsearch>
|
||||||
<springdata.commons>1.8.0.BUILD-SNAPSHOT</springdata.commons>
|
<springdata.commons>1.8.0.RELEASE</springdata.commons>
|
||||||
|
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
@ -146,8 +146,8 @@
|
|||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>spring-libs-snapshot</id>
|
<id>spring-libs-release</id>
|
||||||
<url>http://repo.spring.io/libs-snapshot</url>
|
<url>http://repo.spring.io/libs-release</url>
|
||||||
</repository>
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
<part id="reference">
|
<part id="reference">
|
||||||
<title>Reference Documentation</title>
|
<title>Reference Documentation</title>
|
||||||
|
|
||||||
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.8.0.RC1/src/docbkx/repositories.xml">
|
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.8.0.RELEASE/src/docbkx/repositories.xml">
|
||||||
<xi:fallback
|
<xi:fallback
|
||||||
href="../../../spring-data-commons/src/docbkx/repositories.xml"/>
|
href="../../../spring-data-commons/src/docbkx/repositories.xml"/>
|
||||||
</xi:include>
|
</xi:include>
|
||||||
@ -46,11 +46,11 @@
|
|||||||
|
|
||||||
<part id="appendix">
|
<part id="appendix">
|
||||||
<title>Appendix</title>
|
<title>Appendix</title>
|
||||||
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.8.0.RC1/src/docbkx/repository-namespace-reference.xml">
|
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.8.0.RELEASE/src/docbkx/repository-namespace-reference.xml">
|
||||||
<xi:fallback
|
<xi:fallback
|
||||||
href="../../../spring-data-commons/src/docbkx/repository-namespace-reference.xml"/>
|
href="../../../spring-data-commons/src/docbkx/repository-namespace-reference.xml"/>
|
||||||
</xi:include>
|
</xi:include>
|
||||||
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.8.0.RC1/src/docbkx/repository-query-keywords-reference.xml">
|
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.8.0.RELEASE/src/docbkx/repository-query-keywords-reference.xml">
|
||||||
<xi:fallback
|
<xi:fallback
|
||||||
href="../../../spring-data-commons/src/docbkx/repository-query-keywords-reference.xml"/>
|
href="../../../spring-data-commons/src/docbkx/repository-query-keywords-reference.xml"/>
|
||||||
</xi:include>
|
</xi:include>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
Spring Data Elasticsearch 1.0 RC1
|
Spring Data Elasticsearch 1.0 GA
|
||||||
Copyright (c) [2013-2014] Pivotal Software, Inc.
|
Copyright (c) [2013-2014] Pivotal Software, Inc.
|
||||||
|
|
||||||
This product is licensed to you under the Apache License, Version 2.0 (the "License").
|
This product is licensed to you under the Apache License, Version 2.0 (the "License").
|
||||||
|
Loading…
x
Reference in New Issue
Block a user