Spring maven libraries

Posted by Calm Storm on Stack Overflow See other posts from Stack Overflow or by Calm Storm
Published on 2010-05-07T10:58:07Z Indexed on 2010/05/07 11:18 UTC
Read the original article Hit count: 383

Filed under:
|

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

© Stack Overflow or respective owner

Related posts about java

Related posts about spring