У меня есть приложение Spring Boot, интегрированное с ElasticSearch.Когда я пытаюсь добавить Apache Mahout в качестве зависимости maven, приложение больше не работает с этой ошибкой:
Invocation of init method failed; nested exception is java.lang.NoClassDefFoundError: org/apache/lucene/util/Accountable
Если я удаляю зависимость mahout, приложение работает.pom.xml:
<dependencies>
<dependency>
<groupId>org.apache.mahout</groupId>
<artifactId>mahout-core</artifactId>
<version>0.9</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-elasticsearch</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
Зависимость разрешена maven, проект компилируется без ошибок, но когда я его запускаю, сервер останавливается.Любая идея?Спасибо