Какую зависимость прописать для обновления spring boot до 2.0.2 для spring-boot-starter-velocity?

Обновляю Spring boot с версии 1.4.0 до 2.0.2. При запуске следующие ошибки:
[INFO] Scanning for projects...
[ERROR] [ERROR] Some problems were encountered while processing the POMs:
[ERROR] 'dependencies.dependency.version' for org.springframework.boot:spring-boot-starter-velocity:jar is missing. @ line 25, column 15 @
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]
[ERROR]   The project com.test:proj.web:0.0.1-SNAPSHOT (/home/test/proj/pom.xml) has 1 error
[ERROR]     'dependencies.dependency.version' for org.springframework.boot:spring-boot-starter-velocity:jar is missing. @ line 25, column 15
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException

Правильно понимаю что это расширение не подходит к Spring boot 2.0.2?
Каким образом можно решить проблему?
  • Вопрос задан
  • 88 просмотров
Пригласить эксперта
Ответы на вопрос 1
@aol-nnov
Deprecations from Spring Boot 1.4

Classes, methods and properties that were deprecated in Spring Boot 1.4 have been removed in this release. Please ensure that you aren’t calling deprecated methods before upgrading. In particular, the HornetQ and Velocity support have been removed.
https://github.com/spring-projects/spring-boot/wik...

я подозреваю, что простым указанием версии для spring-boot-starter-velocity дело не кончится.
Ответ написан
Комментировать
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы