To use the Valtech maven repositories, make sure the following fragments are included in the <repositories> section in your project pom.xml or globally defined in your maven settings.xml:
Release Repository
... <repository> <id>vt-oss-releases</id> <url>http://source.valtech.com/repo/content/repositories/releases</url> <releases> <enabled>true</enabled> </releases> </repository> ...
Browse: http://source.valtech.com/repo/content/repositories/releases
Snapshot Repository
... <repository> <id>vt-oss-snapshots</id> <url>http://source.valtech.com/repo/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> </repository> ...
Browse: http://source.valtech.com/repo/content/repositories/snapshots
Comments (2)
May 14, 2009
Ingomar Otter says:
Why do I need settings.xml for a project from this site? Pretty invasive. Change...Why do I need settings.xml for a project from this site? Pretty invasive.
Changes for USE should be limited to POM only, is this possible?
Jul 16, 2009
Oliver Rohr says:
You should not need to change your settings.xml to build one of the projects. Ho...You should not need to change your settings.xml to build one of the projects. However, if you want to upload maven artifacts or a maven site to our server, you need a connection and a user/password to do this. This information you could add to your settings.xml in the servers element.
e.g.
<servers> <server> <id>vt-oss-releases</id> <username>user</username> <password>xxxx</password> </server> </servers>