2017-12-27 6 views
1

Ich versuche, eine Spring Boot App (1.5.9.RELEASE) mit Elastic Search 5.4.1 zu erstellen, und ich habe diesen Konflikt, wenn ich maven> installSpring Boot + Spring Daten elastische Suche + elastische Suche 5.6.0

ausführen

failed to run

Mein pom.xml ist

<properties> 
    ... 
    <elasticsearch.version>5.4.1</elasticsearch.version> 
</properties> 
<repositories> 
    <repository> 
     <id>spring-libs-snapshot</id> 
     <name>Spring Snapshot Repository</name> 
     <url>http://repo.spring.io/libs-snapshot</url> 
    </repository> 
</repositories> 
<dependencies> 
    <dependency> 
     <groupId>org.springframework.data</groupId> 
     <artifactId>spring-data-elasticsearch</artifactId> 
     <version>3.0.0.RC2</version> 
    </dependency> 
    <dependency> 
     <groupId>org.springframework.data</groupId> 
     <artifactId>spring-data-elasticsearch</artifactId> 
    </dependency> 
    <dependency> 
     <groupId>org.elasticsearch.client</groupId> 
     <artifactId>transport</artifactId> 
     <version>5.1.1</version> 
    </dependency><dependency> 
     <groupId>org.springframework.boot</groupId> 
     <artifactId>spring-boot-starter</artifactId> 
    </dependency><dependency> 
     <groupId>org.springframework.boot</groupId> 
     <artifactId>spring-boot-starter-test</artifactId> 
     <scope>test</scope> 
    </dependency> 
    <dependency> 
     <groupId>org.springframework.boot</groupId> 
     <artifactId>spring-boot-starter-web</artifactId> 
    </dependency> 

    <dependency> 
     <groupId>org.springframework.data</groupId> 
     <artifactId>spring-data-commons-core</artifactId> 
     <version>1.0.0.RELEASE</version> 
    </dependency> 

Jede Hilfe wird willkommen sein, danke!

Antwort