from the mailing list:
A partial fix:
You need to add
<repository>
<id>springframework.org</id>
<name>Springframework Maven SNAPSHOT Repository</name>
<url>
http://static.springframework.org/maven2-snapshots/</url>
</repository>
in the <repositories> element of your pom.xml file.
I am not sure why the template doesn't have this included. However, it
is documented at
http://www.springframework.org/osgi
However, after doing so, I am still getting
10/31/06 10:03:29 PM EST: Missing:
----------
1) org.osgi:org.osgi.core:jar:4.0
Try downloading the file manually from the project website.
Then, install it using the command:
mvn install:install-file -DgroupId=org.osgi
-DartifactId=org.osgi.core \
-Dversion=4.0 -Dpackaging=jar -Dfile=/path/to/file
Path to dependency:
1) org.xyz.myproject:mybundle:osgi-bundle:1.0-SNAPSHOT
2) org.osgi:org.osgi.core:jar:4.0
----------
1 required artifact is missing.
Can anyone help?
TIA