I am using Active Objects in my Jira addon. In my maven dependency I have configured 1.2.0 as provided. I wonder which version of ActiveObjects is actually provided by which version of Jira and if I should update my dependency version number when developing for Jira 10.
<dependency>
<groupId>com.atlassian.activeobjects</groupId>
<artifactId>activeobjects-plugin</artifactId>
<version>${ao.version}</version>
<scope>provided</scope>
</dependency>
The link provided on the documentation page points to an Atlassian internal page.
I have my struggles with Maven, maybe my question is wrong.