GitHub user chrisdutz opened a pull request: https://github.com/apache/incubator-edgent/pull/344
Prevent the test-jars from being deployed So it seems there was no good way to prevent the test-jars from being deployed. I created a new maven plugin in the Edgent repo. It's intentionally not included in the build as maven doesn't like to have plugins it uses in the build in the reactor. So please don't "fix" this ;-) The plugin does it's magic in the "install" phase, as it will be executed after the install plugin (we do want the test-jars to be installed, just not to have them deployed). So that's intentional too. More details tomorrow in the mailing list. You can merge this pull request into a Git repository by running: $ git pull https://github.com/apache/incubator-edgent feature/strip-test-jars Alternatively you can review and apply these changes as the patch at: https://github.com/apache/incubator-edgent/pull/344.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #344 ---- commit c522bdf6050e98f1b1e4e0fcec80f028cf78b13d Author: Christofer Dutz <christofer.dutz@...> Date: 2018-01-31T22:21:41Z - Created a maven-plugin to strip out any test-jars from deployment (not installation) - Added the plugin to the parent pom so it is active for all artifacts ---- ---