LogoLogo
timvero.comMaven Repository
  • timveroOS SDK guide
  • timveroOS how-to
  • timveroOS admin-side setup
  • How to use Maven credentials
  • timveroOS SDKs
    • v. 7.11
      • Ubuntu environment setup
      • Data model setup
      • New data source connection, with Bud Financial example
      • Flow customization
      • Decision process execution
      • Participant/ assets dynamic profile setup
      • Documents flow integration setup
      • Application form setup
      • Application API Integration Guide
      • UI/ UX components
        • Collapsing blocks
    • v. 7.10
      • Ubuntu environment setup
      • Data model setup
      • New data source connection, with Bud Financial example
      • Flow customization
      • Participant/ assets dynamic profile setup
      • Documents flow integration setup
      • Application form setup
      • Application API Integration Guide
      • UI/ UX components
        • Collapsing blocks
Powered by GitBook
On this page

Was this helpful?

How to use Maven credentials

How to use Maven credentials to add timveroOS dependency to your project.

Here are the steps:

  1. First, add the repository configuration in your pom.xml:

<repositories>
    <repository>
        <id>maven.timvero.xyz</id>
        <name>Timvero Repository</name>
        <url>https://maven.timvero.xyz/releases</url>
    </repository>
</repositories>
  1. Create or edit the settings.xml file (typically located in ~/.m2/settings.xml on Unix/Mac or C:\Users\YourUsername\.m2\settings.xml on Windows) to store your credentials:

<settings>
    <servers>
        <server>
            <id>maven.timvero.xyz</id>
            <username>__your-username__</username>
            <password>__your-password__</password>
        </server>
    </servers>
</settings>
  1. Now you can add dependencies from your private repository in your pom.xml:

<dependency>
    <groupId>com.timvero.pumpkin</groupId>
    <artifactId>web</artifactId>
    <version>7.10.0</version>
</dependency>

Important notes:

  • The id in your repository configuration must match the id in your settings.xml

  • Never commit the settings.xml file with your credentials to version control

  • Make sure the URL in the repository configuration matches timveroOS repository's URL

Nextv. 7.11

Last updated 4 months ago

Was this helpful?