Modify ClassPath After Packaging With Maven-Shade-Plugin

2013-01-17 Thread JuanTortosa
includes all the dependecies with which the project was firstly compiled but the ClassPath should only include the previously excluded dependencies (excluded with the Maven-Shade-Plugin). Thank you very much. -- View this message in context: http://maven.40175.n5.nabble.com/Modify-ClassPath-After

Re: Modify Classpath

2008-05-14 Thread vicki
: http://www.nabble.com/Modify-Classpath-tp17215208p17236473.html Sent from the Maven - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Modify Classpath

2008-05-13 Thread vicki
I'd like to have a classpath that is build with project's dependencies. Can anyone advise a good way of doing this? Thanks a lot. Vicki -- View this message in context: http://www.nabble.com/Modify-Classpath-tp17215208p17215208.html Sent from the Maven - Users mailing list archive at Nabble.com

Re: Modify Classpath

2008-05-13 Thread Olivier Dehon
Have a look at the build-classpath goal of the dependency plugin: http://maven.apache.org/plugins/maven-dependency-plugin/build-classpath-mojo.html -Olivier On Tue, 2008-05-13 at 11:23 -0700, vicki wrote: Hello, I have a maven's subproject that runs tests against the artifacts of its piers

Re: Modify Classpath

2008-05-13 Thread vicki
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/Modify-Classpath-tp17215208p17220036.html Sent from the Maven - Users mailing list archive at Nabble.com

Re: Modify Classpath

2008-05-13 Thread Wendy Smoak
On Tue, May 13, 2008 at 11:23 AM, vicki [EMAIL PROTECTED] wrote: I have a maven's subproject that runs tests against the artifacts of its piers subprojects. Obviously, In other words, to run my tests I need to create dependencies on the artifacts produced by the other subprojects. I run

Re: Modify Classpath

2008-05-13 Thread Michael McCallum
On Wed, 14 May 2008 11:18:54 Wendy Smoak wrote: On Tue, May 13, 2008 at 11:23 AM, vicki [EMAIL PROTECTED] wrote: I have a maven's subproject that runs tests against the artifacts of its piers subprojects. Obviously, In other words, to run my tests I need to create dependencies on the

RE: Modify Classpath

2008-05-13 Thread Brian E. Fox
: Modify Classpath Olivier, thank you very much for the advice. Unfortunately, my quick test of build-classpath did did not solve my runtime classpath problem. First of all, the examples of the build-classpath goal that I saw, show how to output the project's classpath to a file. What I need is to add

Re: Modify Classpath

2008-05-13 Thread Michael McCallum
in my particular case i needed the code for integration tests so was borderline as to whether the artifact was actually separate or not... but in general i would agree On Wed, 14 May 2008 12:02:13 Brian E. Fox wrote: If you have classes that you need outside a war, the correct way is to make