Hi Jason,
Jason Pratt schrieb:
> hello - mvn can't seem to find pax-web-service anywhere. any ideas?
This artifact is not available from the central maven repository but
from the OPS4J repository.
The Sling launchpad/app module is set up to find the artifact correctly.
If you need it in your own module, you might want to add the following
repository definition to your pom.xml:
<repository>
<id>OPS4J</id>
<name>OPS4J Repository</name>
<url>http://repository.ops4j.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
HTH
Regards
Felix