Loading...

Using Maverick Synergy Hotfixes

If you have purchased or are evaluating the Maverick Synergy Hotfixes branch you should switch your dependency of Maverick Synergy to our dedicated hotfix builds.

When using maven, this can be acheived with a change of groupId and the addition of our public repository.

The hotfixes builds use the same module names, but are published under the com.sshtools.hotfixes groupId.

<dependency>
    <groupId>com.sshtools.hotfixes</groupId>
    <artifactId>maverick-synergy</artifactId>
    <version>3.1.5</version>
</dependency>
Code language: HTML, XML (xml)

As these builds are not in Maven Central you will also need to add the following <repository> definition to your <repositories> section.

<repository>
    <id>jadaptive-releases</id>
    <url>https://artifactory.jadaptive.com/public-releases</url>
    <releases>
        <enabled>true</enabled>
    </releases>
    <snapshots>
        <enabled>false</enabled>
    </snapshots>
</repository>Code language: HTML, XML (xml)

You will also need to install your license file. The license file is a block of code that you place in your application that will be called once before you first call any API methods.

To top