Maven Repositories

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

Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.
  1. 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?

    1. 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>