Dependents tracker as a Maven plugin.
Takes dependency list and send it to OpenSearch using the project's definition as a key.
<plugin>
<groupId>io.github.alersrt</groupId>
<artifactId>plugins.maven.dependent-tracker</artifactId>
<version>0.1.4</version>
<executions>
<execution>
<goals>
<goal>dependent-tracker</goal>
</goals>
</execution>
</executions>
<configuration>
<address>opensearch:9200</address>
<username>username</username>
<password>password</password>
<index>dependencies</index>
</configuration>
</plugin>