Reputation: 53916
When I try the below dependency I receive this warning - [WARNING] The POM for org.springframework:spring-ojb:jar:2.0-rc2 is missing, no dependency information available
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-ojb</artifactId>
<version>2.0-rc2</version>
</dependency>
Can this cause any issues ? Why is there no pom for this dependency ?
Upvotes: 0
Views: 878
Reputation: 52665
It looks like spring-obj project became part of spring-modules project from Spring 2.0 RC4. Here is the spring module announcement page as well as a discussion in spring community forum.
Based on how you want to use this feature, you may either want to take an older version of this (or its dependencies) or use the newer spring-module version. You could also download the jar and manually install it to your local maven repository (mvn install:install-file
)
Upvotes: 0
Reputation: 1210
With the rc2 dependency, I didnt find the pom in my repository either. Looking at the maven repo, there I found version m4. Using the new dependency, I found the pom in my maven repository.
Upvotes: 1