Hades maven spring dependencies
Added by Lars Fischer about 1 year ago
Hello,
I'm playing with hades and tried to use it in my maven build.
There I use the latest spring versions (2.5.6.A) defined in my parent dependencymanagement. Hades has dependencies set to [2.5.0,3.0.0). But after building my project I see that it loads additional spring artefacts for version 2.5.6.
The reason is that hades uses old types of dependencies with a different artifactId:
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${springVersion}</version>
</dependency>
The new type can be found here: http://www.springsource.com/repository/app/bundle?query=S
<dependency> <groupId>org.springframework</groupId> <artifactId>org.springframework.context</artifactId> <version>2.5.6</version> </dependency>
Can this be changed to the new type?
regards,
Lars
Replies
RE: Hades maven spring dependencies
-
Added by Oliver Gierke about 1 year ago
As you probably already saw the ticket is fixed and will make it into 0.6.
Regards,
Ollie