Hi! I'm developing a Maven plugin for a custom <packaging>
https://github.com/stain/data-maven-plugin Is it possible for a plugin to add a JAR file to the test classpath? I've tried to modify project.getArtifacts() from the INITIALIZATION stage, without luck. Catch: the JAR file is the project artifact, and is made during the compile stage as I want to test it during the test stage. (The reason for this is that this plugin supports making ZIP archives of data files, which could be large and therefore I want to avoid copying them to target/classes.)
