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
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
CommentCreate or edit the
settings.xml
file (typically located in~/.m2/settings.xml
on Unix/Mac orC:\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
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 theid
in your settings.xmlCommentNever commit the settings.xml file with your credentials to version control
Last updated
Was this helpful?