Maven integration - Access Denied - 403 Forbidden

Product: PDFTron SDK

Product Version: 9.2.0

Please give a brief summary of your issue:
Trying to download dependencies through Maven returns 403 Forbidden

Please describe your issue and provide steps to reproduce it:
I’m trying to download PDFTron through Maven dependencies, the repository is added:

  <repository>
            <id>pdftron</id>
            <name>PDFNet Maven</name>
            <url>https://pdftron.com/maven/release</url>
        </repository>

and dependency declared as:

<dependency>
            <groupId>com.pdfnet</groupId>
            <artifactId>pdftron</artifactId>
            <version>9.2.0</version>
        </dependency>

getting the following error:

Could not transfer artifact com.pdfnet:pdftron:pom:9.2.0 from/to pdftron (https://pdftron.com/maven/release): authorization failed for https://pdftron.com/maven/release/com/pdfnet/pdftron/9.2.0/pdftron-9.2.0.pom, status: 403 Forbidden

Do I need to add the license key somewhere or…?

Please provide a link to a minimal sample where the issue is reproducible:

Hello, I’m Ron, an automated tech support bot :robot:

While you wait for one of our customer support representatives to get back to you, please check out some of these documentation pages:

Guides:APIs:Forums:

Hello,

It looks like you declared the dependency incorrectly. It should be the following instead:

<dependencies>
    <dependency>
        <groupId>com.pdftron</groupId>
        <artifactId>PDFNet</artifactId>
        <version>9.2.0</version>
    </dependency>
</dependencies>

Please see the getting started guide here for more information.