|
From: Matthias S. (JIRA) <no...@sp...> - 2008-03-20 13:10:07
|
maven2ization: spring-richclient-archetype 1.0.0 creates project depending on spring-richclient 0.3.0-SNAPSHOT
--------------------------------------------------------------------------------------------------------------
Key: RCP-547
URL: http://jira.springframework.org/browse/RCP-547
Project: Spring Framework Rich Client Project
Issue Type: Bug
Components: Build System
Affects Versions: 1.0.0
Environment: WinXP SP2, JDK 1.6.0_05, NetBeans IDE 6.0.1, Maven 2 (included with NetBeans)
Reporter: Matthias Scheriau
A new Maven2 project created with the spring-richclient-archetype 1.0.0 creates a project with dependencies pointing to version 0.3.0-SNAPSHOT of spring-richclient.
As a side-effect, IF someone has got the right artifacts installed locally or is accessing the right repository, it still is possible that the project does not compile "out-of-the-box" (as it was the case with me). Maybe I didn't have the latest 0.3.0-SNAPSHOT installed locally, whatever.
After changing the property springrich.version to 1.0.0 in the pom everything worked / compiled fine without any other changes.
It also might be a nice thing to put the spring richclient repository into the archetype, just in case somebody get the archetype from anywhere that is NOT a repository:
<repositories>
<repository>
<id>springRichClientRepository</id>
<name>Spring rich client repository</name>
<url>http://spring-rich-c.sourceforge.net/maven2repository</url>
</repository>
</repositories>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.springframework.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
|