Missing Dependencies when building SDK example

Hello,

I’m trying to build the expression-function example from the ignition SDK examples, but I’m having trouble with some dependencies. I looked through some older threads about this topic but none of the solutions help in my case.

It seems when maven tries to download from the “thirdparty” repository the connection times out. I could download most of the dependencies by adding other repositories but there are still some missing that I cannot find anywhere else. This results in the following errors when I run mvn package:

Is there something I can try to get around this issue? Any help is much appreciated, thank you.

I was able to resolve it by replacing the URL for the “thirdparty” repository in the pom.xml. The following worked:

<repository>
    <id>thirdparty</id>
    <url>http://nexus.inductiveautomation.com/repository/inductiveautomation-thirdparty</url>
    <snapshots>
        <enabled>true</enabled>
        <updatePolicy>always</updatePolicy>
    </snapshots>
    <releases>
        <enabled>true</enabled>
    </releases>
</repository>

I’ve updated the thirdparty repo reference in that example; not sure why it was wrong.