Simon Kitching wrote:
Jeff Bischoff wrote:
Simon,
Thanks a lot for responding. I'm still a bit confused, as I don't see
a ".m2" directory anywhere. I should mention that I am using windows -
do that change the behaviour at all?
For Windows, look in c:\Documents and Settings\{your user}\.m2
And by the way, I assume you're building:
http://svn.apache.org/repos/asf/myfaces/shared/trunk/pom.xml
You can see that it creates version 2.0.5-SNAPSHOT (and installs it
under that version-id in your local m2 directory):
<groupId>org.apache.myfaces.shared</groupId>
<artifactId>myfaces-shared-project</artifactId>
<packaging>pom</packaging>
<name>MyFaces Shared Project</name>
<version>2.0.5-SNAPSHOT</version>
Looking at
http://svn.apache.org/repos/asf/myfaces/tomahawk/trunk/
you can see that file core/pom.xml declares a dependency on shared
2.0.5-SNAPSHOT:
<dependency>
<groupId>org.apache.myfaces.shared</groupId>
<artifactId>myfaces-shared-tomahawk</artifactId>
<version>2.0.5-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
which means that it will pick up the file from your local .m2 directory
that was installed by building the shared code.
Cheers,
Simon