Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Closed dependencies

To be able to build anything that has Oracle dependencies, the following needs to be added to your maven settings

<servers>
  <server>
    <id>thirdparty</id>
    <username>USERNAME</username>
    <password>PASSWORD</password>
  </server>
</servers>

<profiles>
  <profile>
    <id>focus</id>
    <activation>
      <activeByDefault>true</activeByDefault>
    </activation>
    <repositories>
      <repository>
        <id>thirdparty</id>
        <name>FOCUS 3rd party</name>
        <url>http://nexus.focus.fish/nexus/content/repositories/thirdparty/</url>
      </repository>
    </repositories>
  </profile>
</profiles>

Replace USERNAME and PASSWORD with your Nexus credentials

  • No labels