Reputation: 2284
When developing Spring XD custom modules you need to specify spring-xd-module-parent as the parent project, however the most recent Spring XD version in maven central is 1.0.4, instead of 1.2.1. Is this an oversight or do I need to use a Spring repository for the XD dependenices?
Upvotes: 1
Views: 219
Reputation: 37
I've had the same error, and to solve it I looked at maven based spring-xd modules examples on github and found the solution.
The spring-xd-module-parent
is located in the spring repositories not in the maven central.
Add the following repository to your pom to solve the problem.
<repositories>
<repository>
<id>spring-io-release</id>
<url>http://repo.spring.io/release</url>
</repository>
</repositories>
Upvotes: 1