>> > is it possible to include system-scoped dependencies in a shaded jar?
Do not use system-scope in your builds, period. > jar's manifest. Obviously, that works only as long as the absolute paths to > the jars are the same on all machines the app is used on. However, that's no > longer the case, so now I'm trying to get the jar to include the stuff it > depends on. If anyone has a suggestion for solving this in a more elegant > way, I'd be interested. Do not use system-scope. Install or deploy the jars into local Maven repos. Anything else is a hack. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
