7.9 Possibly Unpublished Dependencies

I am trying to update my 7.8 module to 7.9 but have run into a problem that I am having a hard time resolving. Including the dependencies listed below doesn’t seem to work as they don’t appear to be published in a 7.9.0-SNAPSHOT version.

If you could please share them and let me know when they are available so that I can continue I would appreciate it. If I am simply missing something on my end please let me know what I can do to resolve this correctly.

com.inductiveautomation gateway 7.9.0-SNAPSHOT provided com.inductiveautomation taghistorian 7.9.0-SNAPSHOT

Thanks,

Jake

The taghistorian one isn’t currently published for 7.9, I’ll look into that.

In either case your groupId is wrong - it should be com.inductiveautomation.ignition.

edit: and technically, you shouldn’t be developing against anything that isn’t under com.inductiveautomation.ignitionsdk, even though there’s nothing stopping you.

Ok, turns out both these are actually published, and you should just be using the correct SDK dependencies.

<dependency>
  <groupId>com.inductiveautomation.ignitionsdk</groupId>
  <artifactId>gateway-api</artifactId>
  <version>7.9.0-SNAPSHOT</version>
  <type>pom</type>
</dependency>

<dependency>
  <groupId>com.inductiveautomation.ignitionsdk</groupId>
  <artifactId>tag-historian</artifactId>
  <version>7.9.0-SNAPSHOT</version>
  <type>pom</type>
</dependency>