Looks like the 1.5.5 release has a snapshot dependency in it.
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb-log4j</artifactId>
<version>1.10.5.BUILD-SNAPSHOT</version>
</dependency>
Causes release plugins to fail.
Thanks
David
The problem is in Spring Data's bom. Unfortunately, our enforcer rules didn't catch this one as we don't depend on org.springframework.data:spring-data-mongodb-log4j.
@olivergierke Can we please have an Ingalls-SR5-2 bom?
We plan to release 1.5.6 tomorrow to fix this. In the interim, anyone who is affected can work around the problem by adding the following to their application's pom:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb-log4j</artifactId>
<version>1.10.5.RELEASE</version>
</dependency>
</dependencies>
</dependencyManagement>
I didn't get the issue you are describing nor the link with this issue. This particular issue is fixed. Perhaps we can chat on gitter?
Hi @masu1402 the fix worked and I've had no issues with 1.5.6.
Removed my comment. Had nothing to do with this issue.
Most helpful comment
We plan to release 1.5.6 tomorrow to fix this. In the interim, anyone who is affected can work around the problem by adding the following to their application's pom: