Last updated on 16th July 2024
Each of these setup processes can be done with user-wide authentication or project-local authentication. Although most modellers need user-wide authentication, there may be instances where a different license is necessary in one or more specific projects. The setup processes go through user-wide setup first, followed by project-local setup.
Maven will search for a file called settings.xml
in its home directory when creating a default server authentication configuration.
Use the following commands to create and open the Maven home directory, .m2
directory, if it hasn't been created already.
On a Windows command prompt (WinKey + R, cmd
), run the following commands.
md "%userprofile%\.m2"
explorer "%userprofile%\.m2"
On Mac OS and Linux, run the following commands.
mkdir -p ~/.m2
open ~/.m2 # MacOS
xdg-open ~/.m2 # Linux
Next, if settings.xml
doesn't exist in that directory, create it. The basic structure of the file should look like the following.
<?xml version="1.0" encoding="UTF-8"?>
<settings>
<servers>
<server>
<id>simudyne.jfrog.io</id>
<username></username>
<password></password>
</server>
</servers>
</settings>
Place your username and password in the appropriate XML elements, then save the file. The username and password are located in your Maven access token file.
The format of the Maven access token file has changed slightly over time. For older Simudyne users, the username is the name of the access token file, and the password is the file content. Newer users can find both the username and passowrd in the contents of the access token file, as the first and second line, respectively.
There are two different ways Maven can be configured for project-local authentication.
-S settings.xml
to any mvn
command.settings.xml
file in your project.SDK users should recieve a Simudyne license file as part of the onboarding process. Please contact support@simudyne.com if there are any license problems.
Read more in-depth documentation on licensing here.
There are several ways that Simudyne licenses can be configured for project-local authentication.
core.license-file
property into the simudyneSDK.properties
file. The value should be the path to your license relative to your project root directory.-DsimudyneLicenseFile
flag.