Can maven-compiler-plugin compile with aspectJ compiler?

2008-08-12 Thread vicki
I could not confirm that aspectj can be used as compilerId in maven-compiler-plugin configuration. All my attempts to use aspectj maven plugin failed in either compile or run time. Thanks, Vicki -- View this message in context: http://www.nabble.com/Can-maven-compiler-plugin-compile

Re: Can maven-compiler-plugin compile with aspectJ compiler?

2008-08-12 Thread vicki
switching to use antrun to instrument my project artifact classes with my aspectj aspects. Rune Flobakk wrote: Give aspectj-maven-plugin a try: http://mojo.codehaus.org/aspectj-maven-plugin/ - Rune vicki skrev: I could not confirm that aspectj can be used as compilerId in maven-compiler

Re: How to exclude some repositories from a child pom?

2008-08-08 Thread vicki
the repository element. What it looks like you need to do is to set up a repository manager that houses the integration lanes and manage what updates you want to get in there, then your environment can direct all repository requests to the single repository manager. - Brett 2008/8/8 vicki [EMAIL

How to exclude some repositories from a child pom?

2008-08-07 Thread vicki
the central (or any other) repository from the repositories specified in my integration profile? Thanks! Vicki -- View this message in context: http://www.nabble.com/How-to-exclude-some-repositories-from-a-child-pom--tp18877415p18877415.html Sent from the Maven - Users mailing list archive at Nabble.com

Is there an analog of ant's macrodef in maven?

2008-08-04 Thread vicki
just once, and then refer to it from different integration tests. Thanks! Vicki -- View this message in context: http://www.nabble.com/Is-there-an-analog-of-ant%27s-macrodef-in-maven--tp18817418p18817418.html Sent from the Maven - Users mailing list archive at Nabble.com

Re: Modify Classpath

2008-05-14 Thread vicki
This is exactly what I am doing - an integration test. I decided to create a separate test subproject that is a peer to the tested subprojects. I hoped that by declaring the same parent in my test subproject and inheriting all the project's dependencies I will be able to avoid version

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 vicki
/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 subprojects. Obviously, In other words, to run my tests I need to create dependencies on the artifacts produced by the other