diff --git a/How-to-start-with-spring-data-elasticsearch.creole b/How-to-start-with-spring-data-elasticsearch.mediawiki similarity index 54% rename from How-to-start-with-spring-data-elasticsearch.creole rename to How-to-start-with-spring-data-elasticsearch.mediawiki index cae6a32..466b85c 100644 --- a/How-to-start-with-spring-data-elasticsearch.creole +++ b/How-to-start-with-spring-data-elasticsearch.mediawiki @@ -1,10 +1,13 @@ -**First thing you will need to answer to yourself how you will use this framework.** +**First you will need to answer to yourself how you will use this framework.** **Case 1:** + I need only index and search documents in my project. -Quick start: +How to configure your project: + First add to your pom.xml file information about snapshot repository for spring-data-elasticsearch + {{{ @@ -14,7 +17,9 @@ First add to your pom.xml file information about snapshot repository for spring- }}} + Second add dependency for spring-data-elasticsearch + {{{ ... @@ -26,12 +31,35 @@ Second add dependency for spring-data-elasticsearch ... }}} + Having both entries in the pom file you should be able to use spring-data-elasticsearch without any issues. **Case 2:** + I have a plane to develop new feature/ or extend existing ones. -Quick start: + +How to configure your project: + +Project has dependencies with spring-data-parent to fulfil that we need to add information about snapshot spring repository and snapshot spring plugin repository. + +Snapshot spring repository: +{{{ + + spring-snapshot + Spring Maven SNAPSHOT Repository + http://repo.springsource.org/libs-snapshot + +}}} +Snapshot spring plugin repository: +{{{ + + com.springsource.repository.bundles.release + http://repository.springsource.com/maven/bundles/release + +}}} + +