Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Spring maven libraries

I would like to know why some of the libraries are not released during a normal release cycle. For example, from http://repo2.maven.org/maven2/org/springframework/

while spring-core have 3.0.3-RELEASE, spring-remoting and spring-jmx were released only in 2.0.8. Can someone tell me what this would mean? I agree that if there are no changes in the component say spring-jmx then they don't have to release it, but since 90% of the world uses Maven for dependency management can they not just re-release the same libs (of spring-remoting and spring-jmx?)

I ask this because I declare my deps like,

<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-core</artifactId>
  <version>${spring.version}</version>
</dependency>
<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-remoting</artifactId>
  <version>${spring.version}</version>
</dependency>

and I would prefer supplying one spring.version instead of keeping version numbers upto date for all components?

The four libraries of interest to me are spring-dao, spring-support, spring-jmx, spring-remoting

like image 941
Kannan Ekanath Avatar asked May 07 '10 10:05

Kannan Ekanath


1 Answers

spring-remoting and spring-jmx became a part of spring-context, so newer versions are released with spring-context.

like image 110
axtavt Avatar answered Oct 13 '22 04:10

axtavt