I have been following these tutorials as in introduction to Spring RC
http://java.dzone.com/news/spring-rcp-tutorial
They all worked fine as the Netbeans plugin contained a full version of SpringRC so I didn't have any dependency issues.
However, now I want to use it in my existing maven project and I am having dependency issues.
I have added the following to my pom.xml
and I get the following errorCode:<repository> <id>springRichClientRepository</id> <name>Spring rich client repository</name> <url>http://spring-rich-c.sourceforge.net/maven2repository</url> </repository> <dependency> <groupId>org.springframework.richclient</groupId> <artifactId>spring-richclient-sandbox</artifactId> <version>1.1.0</version> </dependency> <dependency> <groupId>org.springframework.richclient</groupId> <artifactId>spring-richclient-resources</artifactId> <version>1.1.0</version> </dependency> <dependency> <groupId>org.springframework.richclient</groupId> <artifactId>spring-richclient-core</artifactId> <version>1.1.0</version> </dependency> <dependency> <groupId>org.springframework.richclient</groupId> <artifactId>spring-richclient</artifactId> <version>1.1.0</version> </dependency> <dependency> <groupId>com.vlsolutions</groupId> <artifactId>vldocking</artifactId> <version>2.1.4</version> </dependency>
When I look at the repository, there is no jar there!Code:Could not find artifact org.springframework.richclient:spring-richclient:jar:1.1.0 in springRichClientRepository (http://spring-rich-c.sourceforge.net/maven2repository)
http://spring-rich-c.sourceforge.net...hclient/1.1.0/
Is there another repository with the jar in it?


Reply With Quote