Hello,
I’m trying to add the following dependency to my Ignition module and I can’t seem to get my module to work unless I make it a “compile” scoped dependency. When I do, my module ends up being ~100MB in size and I get Java heap space errors when loading this into the gateway.
<dependency>
<groupId>com.inductiveautomation.ignition</groupId>
<artifactId>tag-historian</artifactId>
<version>4.1.0</version>
<scope>compile</scope>
</dependency>
For now, I’ve separately downloaded your tag historian module from the website and added it to my local maven cache and it seems to be working without blowing things up, but what do I need to do to make this a “provided” dependency?