Accessing the TIMVERO's framework

How to use Maven credentials

How to use Maven credentials to add timveroOS dependency to your project.Page actionsCommentHere are the steps: Comment

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

Comment<repositories><repository><id>maven.timvero.xyz</id><name>Timvero Repository</name><url>https://maven.timvero.xyz/releases</url></repository></repositories>CopyComment

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

Comment<settings><servers><server><id>maven.timvero.xyz</id><username>__your-username__</username><password>__your-password__</password></server></servers></settings>CopyComment

  1. CommentNow you can add dependencies from your private repository in your pom.xml:

Comment<dependency><groupId>com.timvero.pumpkin</groupId><artifactId>web</artifactId><version>7.10.0</version></dependency>CopyCommentImportant notes:Comment

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

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

Last updated

Was this helpful?