I am working on a module that uses the class: com.inductiveautomation.gateway.tags.history.actor.TagHistoryProps. When upgrading from 8.1.5 to 8.1.7, this class was no longer available.
java.lang.Exception: Exception while starting up module "com.mymodule".
Caused by: java.lang.NoClassDefFoundError: com/inductiveautomation/gateway/tags/history/actor/TagHistoryProps
Caused by: java.lang.ClassNotFoundException: com.inductiveautomation.gateway.tags.history.actor.TagHistoryProps
Where did this class get moved to and what dependencies do I need to update to get it to work in my module build? I believe this class is coming from the dependency below, but it does not seem to have a new version available…
<dependency>
<groupId>com.inductiveautomation.ignition</groupId>
<artifactId>tag-historian</artifactId>
<version>4.1.0</version>
<scope>provided</scope>
</dependency>
Also, I heard it moved to com.inductiveautomation.ignition.common.tags.config.properties.TagHistoryProps but still need to get the dependencies sorted.