I try to compile a module with 8.1.11 instead of 8.1.7
I want to use new AlarmState value Disabled and Enabled in a queryStatus.
https://files.inductiveautomation.com/sdk/javadoc/ignition81/8.1.11/com/inductiveautomation/ignition/common/alarming/AlarmState.html
I’ve changed ignition-platform-version from 8.1.7 to 8.1.11
<properties>
<ignition-platform-version>8.1.11</ignition-platform-version>
<ignition-sdk-version>${ignition-platform-version}-SNAPSHOT</ignition-sdk-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
when I compile I have the following error:
Could not find artifact com.inductiveautomation.plaf:ignition-laf:pom:3.1.0-beta8 in releases (https://nexus.inductiveautomation.com/repository/inductiveautomation-releases)
Any Idea ?
Hmm, I am not sure why that’s failing to resolve, or why it’s specifically trying to resolve via ‘releases’ repository. I went ahead and duplicated the jar to that repository, so give it another shot and let me know if you continue to have failures.
I still have the error with 8.1.11
Downloading from thirdparty: https://nexus.inductiveautomation.com/repository/inductiveautomation-thirdparty/de/javasoft/synthetica/3.4.0/synthetica-3.4.0.pom
[WARNING] The POM for de.javasoft:synthetica:jar:3.4.0 is missing, no dependency information available
Downloading from releases: https://nexus.inductiveautomation.com/repository/inductiveautomation-releases/de/javasoft/synthetica-addons/3.4.0/synthetica-addons-3.4.0.pom
Downloading from thirdparty: https://nexus.inductiveautomation.com/repository/inductiveautomation-thirdparty/de/javasoft/synthetica-addons/3.4.0/synthetica-addons-3.4.0.pom
[WARNING] The POM for de.javasoft:synthetica-addons:jar:3.4.0 is missing, no dependency information available
Downloading from releases: https://nexus.inductiveautomation.com/repository/inductiveautomation-releases/de/javasoft/jydocking/3.4.0/jydocking-3.4.0.pom
Downloading from thirdparty: https://nexus.inductiveautomation.com/repository/inductiveautomation-thirdparty/de/javasoft/jydocking/3.4.0/jydocking-3.4.0.pom
[WARNING] The POM for de.javasoft:jydocking:jar:3.4.0 is missing, no dependency information available
Downloading from releases: https://nexus.inductiveautomation.com/repository/inductiveautomation-releases/de/javasoft/jyiconfonts/3.4.0/jyiconfonts-3.4.0.pom
Downloading from thirdparty: https://nexus.inductiveautomation.com/repository/inductiveautomation-thirdparty/de/javasoft/jyiconfonts/3.4.0/jyiconfonts-3.4.0.pom
[WARNING] The POM for de.javasoft:jyiconfonts:jar:3.4.0 is missing, no dependency information available
Downloading from releases: https://nexus.inductiveautomation.com/repository/inductiveautomation-releases/de/javasoft/jytable/3.4.0/jytable-3.4.0.pom
Downloading from thirdparty: https://nexus.inductiveautomation.com/repository/inductiveautomation-thirdparty/de/javasoft/jytable/3.4.0/jytable-3.4.0.pom
[WARNING] The POM for de.javasoft:jytable:jar:3.4.0 is missing, no dependency information available
Downloading from releases: https://nexus.inductiveautomation.com/repository/inductiveautomation-releases/de/javasoft/jywidgets/3.4.0/jywidgets-3.4.0.pom
Downloading from thirdparty: https://nexus.inductiveautomation.com/repository/inductiveautomation-thirdparty/de/javasoft/jywidgets/3.4.0/jywidgets-3.4.0.pom
[WARNING] The POM for de.javasoft:jywidgets:jar:3.4.0 is missing, no dependency information available
Downloading from releases: https://nexus.inductiveautomation.com/repository/inductiveautomation-releases/org/jdesktop/swingx/0.0.3-ia/swingx-0.0.3-ia.pom
Downloading from thirdparty: https://nexus.inductiveautomation.com/repository/inductiveautomation-thirdparty/org/jdesktop/swingx/0.0.3-ia/swingx-0.0.3-ia.pom
[WARNING] The POM for org.jdesktop:swingx:jar:0.0.3-ia is missing, no dependency information available
Downloading from snapshots: https://nexus.inductiveautomation
Hmm, so it seems that the previous failure is not longer occurring, but that resulted in a number of new resolution failures.
I’m investigating, will update when I have something to report.
I also noted that your ignition-sdk-version is pointing to a -SNAPSHOT
, which could be contributing to the failures. Might be worth trying the stable release version of 8.1.11. I’m not sure that’s the problem, but worth ruling out.
Ok, I suspect the original artifacts weren’t published correctly - seems like the poms were missing. I’ve republished these artifacts with the appropriate metadata. I’m setting up a sandboxed/clean environment to try, but hopefully that will resolve it for you. I’ll update when I’ve been able to confirm/deny it’s working as expected for me.
followup edit: Was able to checkout the vision sdk example we have on github, update the target sdk version to 8.1.11, and then run a build in a clean VM. Should be resolved for everyone. Thanks for reporting @mazeyrat .
1 Like
Thanks a lot !
I can build successfully my module with 8.1.11 sdk.
2 Likes