I've spent most of yesterday trying to figure out what to use in my pom.xml file so I can get the ImageJ2 libraries that I need without inheriting from the ImageJ parent pom. I figured out the following settings, but they are far from optimal:
...
<repository>
<id>imagej.public</id>
<url>http://maven.imagej.net/content/groups/public</url>
</repository>
...
<dependency>
<groupId>net.imagej</groupId>
<artifactId>imagej</artifactId>
<version>2.0.0-rc-28</version>
</dependency>
...
The problem I have is that it appears that all of ImageJ2 is downloaded this way. There is a massive dependency tree and some 60+ jar files are now in my classpath in eclipse.
How can I pick and choose the individual libraries that I need, and which one of them is the base version (like ij.jar was for ImageJ1)? And how can I find the available version number(s)?