Mercurial > hg > Blog
view content/Maven/assembly-vs-system-scope.md @ 96:57988fb9567c
The link to the java autoboxing problems was dead. Use a new one that describes the problem better.
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Wed, 24 Jul 2019 08:29:42 +0200 |
parents | 4cd9b65e10e4 |
children |
line wrap: on
line source
Title: maven-assembly-plugin vs system scope dependencies Date: 2008-04-18 Lang: en I was playing around with [Gigaspaces](http://www.gigaspaces.com/) the other day. Since GS jars are not available on any Maven repo and GS comes with everything you need prepackaged I used Maven dependencies with system scope to pull the required jars into my build. Then I tried to assemble a simple zip to move some code over to another machine and created an assembly descriptor to build a deployment package. One requirement was to keep the Gigaspaces jars in their original form i.e. no renaming, unpacking etc. To package system scoped dependencies with unchanged filenames use the following snippets in your assembly descriptor: :::xml <dependencySet> <outputDirectory>lib</outputDirectory> <scope>system</scope> <outputFileNameMapping>${artifact.file.name}</outputFileNameMapping> </dependencySet>