Re: Cannot float image left and wrap text

2010-01-22 Thread Lukas Theussl
Which version of the site plugin are you using? It should work with 2.1. -Lukas Michael Remijan wrote: I’m using maven to build my project’s site. I’m trying to do something very simple. Below is my index.xml.vm file. All I want to do is float the image left so the text appears to the

Jar file source files compiling

2010-01-22 Thread Eric wais
Hi, I have a jar file that is a dependency on a project. This jar contains source files as well. The problem is that the source files are being compiled (when running clean install) and put in the target directory. Is there anyway to exclude the class files as these are now being included as part

Re: maven-antrun-plugin exec task. Windows. Can't leave process running in the background.

2010-01-22 Thread gags_78
Hi Siegfried, You sir, are what we commonly refer to in Ireland as a Legend!!! A total ledgebox!! I cannot thank you enough. That has made my day and works a charm. I thank you kindly. Regards, Mark. Siegfried Goeschl wrote: Hi Mark, have you tried the spawnattribute of the

maven2 not forking ant task

2010-01-22 Thread struts-restful
Hi i have a ant task defined in Maven as below and when it runs from within the maven build phase the jvm does not seem to fork. Does anyone have any ideas. I have also included the output from the console when the ant task is starting up. It does not mention any forking in the start up either.

Problem with exclusions

2010-01-22 Thread Adam Retter
My exclusions from my test configuration in my POM seem to be being ignored. I am following the following example, to try and setup Unit Tests and Integration Tests - http://weblogs.java.net/blog/johnsmart/archive/2008/06/unit_tests_are.html My POM looks like this - project

Mapping between goals and -D command line args

2010-01-22 Thread Benson Margulies
In general, is there a predictable relationship between the name of a plugin configuration item and a -D that works from command line? For example, surefire has 'argLine'. Should I expect to be able to say -Dsurefire.argLine? or -DargLine? or neither?

Re: maven-antrun-plugin exec task. Windows. Can't leave process running in the background.

2010-01-22 Thread Siegfried Goeschl
Hi Mark, no idea what a ledgebox is but is is probably not very offending ... ;-) Cheers, Siegfried Goeschl gags_78 wrote: Hi Siegfried, You sir, are what we commonly refer to in Ireland as a Legend!!! A total ledgebox!! I cannot thank you enough. That has made my day and works a

Re: maven-antrun-plugin exec task. Windows. Can't leave process running in the background.

2010-01-22 Thread gags_78
It is a container for legendariness!! Top man!! Siegfried Goeschl wrote: Hi Mark, no idea what a ledgebox is but is is probably not very offending ... ;-) Cheers, Siegfried Goeschl gags_78 wrote: Hi Siegfried, You sir, are what we commonly refer to in Ireland as a

Re: maven2 not forking ant task

2010-01-22 Thread Siegfried Goeschl
Hi struts-restfull, according to http://ant.apache.org/manual/index.html the is also a spawn attribute - have you tried that? Cheers, Siegfried Goeschl struts-restful wrote: Hi i have a ant task defined in Maven as below and when it runs from within the maven build phase the jvm does not

What to do with jars that are Moved (http-code: 302)

2010-01-22 Thread Rodrigo Meza
Hello, I am new to maven, and I am trying to compile a project that have some dependencies, but they are not downloaded because (I think) their jars have been redirected in the central repository. What can I do in that case? To show my problem, I deleted my local repository

Re: What to do with jars that are Moved (http-code: 302)

2010-01-22 Thread Wayne Fay
addressApache Server at maven-repository.dev.java.net Port 443/address /body/html So, my question is: Is there any way to tell maven to follow redirections instead of downloading the html? Maven is reasonably intelligent but it requires proper configuration of the repository server. In this

Re: Jar file source files compiling

2010-01-22 Thread Wayne Fay
I have a jar file that is a dependency on a project. This jar contains source files as well. The problem is that the source files are being compiled (when running clean install) and put in the target directory. Is there anyway to exclude the class files as these are now being included as part

Re: Mapping between goals and -D command line args

2010-01-22 Thread Wayne Fay
In general, is there a predictable relationship between the name of a plugin configuration item and a -D that works from command line? For example, surefire has 'argLine'. Should I expect to be able to say -Dsurefire.argLine? or -DargLine? or neither? Generally, neither. Wayne

Does Maven release/null out plugins after executions?

2010-01-22 Thread Laird Nelson
Hello; I have created a more flexible version of the Maven OpenJPA plugin. We use it to generate code from our massive 30-year-old database. It wraps an OpenJPA tool called the ReverseMappingTool. The ReverseMappingTool generates all kinds of objects in memory as it runs. Our build dies midway

Re: What to do with jars that are Moved (http-code: 302)

2010-01-22 Thread Rodrigo Meza
On Fri, Jan 22, 2010 at 11:44 AM, Wayne Fay wayne...@gmail.com wrote: people's builds for reasons like this. Maven simply can't help this and is not currently smart enough to validate jars etc it downloads. thanks for your answer. Anyway, I dont think that maven has to validate jars, since the

Re: Does Maven release/null out plugins after executions?

2010-01-22 Thread Jeff MAURY
If I remember correctly, you can set the instantiation policy for a Mojo. By default, it may be once which means it will never be released by Maven and kept as a singleton. May be you can have a look at this feature ? Regards Jeff MAURY On Fri, Jan 22, 2010 at 3:50 PM, Laird Nelson

Re: Cannot float image left and wrap text

2010-01-22 Thread Michael Remijan
Whatever came with my maven distro.  I did help:effective-pom on the project and this is what it says: plugin artifactIdmaven-site-plugin/artifactId version2.0-beta-7/version /plugin   Would I need to put a different version in my settings.xml file to override this?

Re: Problem with exclusions

2010-01-22 Thread Stephen Connolly
you'd probably have more luck using maven-failsafe-plugin to run your integration tests and leave maven-surefire-plugin for running the unit tests... also it would not require quite so extreme hackyness Sent from my [rhymes with tryPod] ;-) On 22 Jan 2010, at 11:32, Adam Retter

Shade Plugin: How to include artifacts and all their dependencies?

2010-01-22 Thread Peter Niederwieser
I'd like to include a specific set of artifacts and all their transitive dependencies. However, includes only includes the artifacts themselves, but not their dependencies. Is there a way to achieve my goal? Cheers, Peter -- View this message in context:

Where maven is finding a given repository

2010-01-22 Thread EJ Ciramella
Hi list - We are using archiva in house and have a repository grouping proxy set up, but - for some reason, one project is trying to find an internal pom out on repo 1. Is there a good way to get maven to spit out where (in which settings.xml file or pom.xml file) it's finding the repo1

Re: Mapping between goals and -D command line args

2010-01-22 Thread Benson Margulies
I think that makes me feel better. Is there an @ that has to be in the mojo to bind to a -D? On Fri, Jan 22, 2010 at 9:50 AM, Wayne Fay wayne...@gmail.com wrote: In general, is there a predictable relationship between the name of a plugin configuration item and a -D that works from command

Re: Problem with exclusions

2010-01-22 Thread Adam Retter
Yes that is an option, but I dont really like the idea of having to prefix all my integration tests with IT*.java which is required by the failsafe plugin. Also surely the exclusions stuff should work? and I would need to use them to exclude the IT tests which are used by the failsafe plugin from

Re: Problem with exclusions

2010-01-22 Thread Stephen Connolly
you can specify a different includes rule for failsafe so that you don't need to follow the IT convention. the advantage of failsafe is that it will allow you to tidy up after the integration tests if the tests have failed... surefire does not give you that option, also you don't have to

Re: Where maven is finding a given repository

2010-01-22 Thread Anders Hammar
I'm guessing that that repo is defined in some dependency's pom. You should be able to find which by searching for the url in all poms in the local repo of a Maven client where you see this during a build. /Anders On Fri, Jan 22, 2010 at 21:10, EJ Ciramella ecirame...@upromise.com wrote: Hi

Bad jar in maven central?

2010-01-22 Thread Steve Cohen
I had a build adventure today which manifested itself as a NoClassFoundException. Trying to get to the bottom of this, I was looking into the code on a different machine from the one where this build took place. I wanted to try to determine what jar contained the class I was missing, to try and

gwt-maven-plugin how to create configure index.html?

2010-01-22 Thread David Hoffer
When building a war using gwt-maven-plugin via: plugin groupIdorg.codehaus.mojo/groupId artifactIdgwt-maven-plugin/artifactId version${gwt-maven-plugin.version}/version configuration