jnlp plugin

2010-04-20 Thread sudharma karekar
I have a parent project called jnlp-test under which I have two projects jnlp-war and jnlp-main-jar It looks something like this jnlp-test(parent) jnlp-main-jar(child) jnlp-war(child) I am using the webstart-maven-plugin to build the war. I have an entry in the jnlp-war pom to include the jnlp-m

Re: Integration of an applet jar in a war with Eclipse (Maven integration + WTP plugins)

2010-04-20 Thread Jean-Claude Vogel
Hello, No idea of solution ? It seems that with maven 1 it was possible de add properties to a dependency of the war to indicate the final location in the war, but it's no more possible. 2010/4/17 Jean-Claude Vogel > Hello, > > I would like to put an applet Jar built with maven in my war. So in

Re: Maven 2.2.1 on Windows-64 bit

2010-04-20 Thread Brett Porter
I have no direct experience, but there's no reason it shouldn't. It works just fine on my 64-bit Mac :) On 21/04/2010, at 2:53 PM, Vineeth Karkad (vkarkad) wrote: > Hi, > > We have our build hosts on Win 2K3 server Standard Edition 32-bit. > Because of memory related performance issues, we are

[ANN] maven deptools plugin 1.0-RC4-SNAPSHOT released

2010-04-20 Thread Morten Kjetland
Hi all, I've created a maven plugin that "...gives build error if maven resolves transient dependencies in such a way that the none-newest version is chosen." This plugin has turned out to be very useful in the company I work for. I would appreciate any feedback about the plugin. The plugin can

Maven 2.2.1 on Windows-64 bit

2010-04-20 Thread Vineeth Karkad (vkarkad)
Hi, We have our build hosts on Win 2K3 server Standard Edition 32-bit. Because of memory related performance issues, we are planning to upgrade to 64-bit Standard Edition/Enterprise Edition of Win 2K3 server. We have Maven 2.2.1 on our build hosts that have latest releases and Maven 2.0.4 on buil

Re: complex jar generation for SCJD assignment

2010-04-20 Thread Wayne Fay
> exactly once. Focus on the code (which you can certainly build with > Maven) and then when you're ready to submit it to Oracle, zip up the > files you need in the directory structure you need them in. Agreed wholeheartedly. Unless he's building a Maven config that he plans to share for the benef

Re: complex jar generation for SCJD assignment

2010-04-20 Thread Justin Edelson
On 4/20/10 4:35 PM, ZedroS Schwart wrote: > hi > > thanks a lot for this input. I struggled a bit at first to understand > this plugin and then I found this page > http://people.apache.org/~epunzalan/maven-assembly-plugin/ which > helped a lot. This looks like a very out of date version of http://

Re: [ANN] Maven Compiler Plugin 2.3 Released

2010-04-20 Thread Brett Porter
Yes, the checksums seem to be incorrect on central. I'll forward this to the dev list. On 21/04/2010, at 5:48 AM, Raphael Ackermann wrote: > I get the same/similar checksum errors with nexus 1.6. > I deleted the plexus-compiler artefacts both from my local and the > nexus repository but got the

Re: How to add jar file into a Maven 2 environment?

2010-04-20 Thread David Hoffer
Right if its not in a public Maven repository you have to add it to yours. Ideally you will have an internal Maven proxy server such as Artifactory/Nexus where you can deploy it once and all can get it from there. (Regarding iText 5.x the reason that's not in a public maven is the license has cha

How to add jar file into a Maven 2 environment?

2010-04-20 Thread Vernon
We need to add PayPal Java library files into our Maven development environment. PayPal doesn't make any Maven artifact ID. What is a right way of adding a jar file? And one more related question: shall we add jar file by ourselves for a new version of jar file? For example, the current version o

Re: complex jar generation for SCJD assignment

2010-04-20 Thread ZedroS Schwart
hi thanks a lot for this input. I struggled a bit at first to understand this plugin and then I found this page http://people.apache.org/~epunzalan/maven-assembly-plugin/ which helped a lot. I'm now looking closer at it :) best zedros On Tue, Apr 20, 2010 at 12:35 AM, Justin Edelson wrote: > Y

Re: [ANN] Maven Compiler Plugin 2.3 Released

2010-04-20 Thread Raphael Ackermann
I get the same/similar checksum errors with nexus 1.6. I deleted the plexus-compiler artefacts both from my local and the nexus repository but got the same error still. Raphael On Tue, Apr 20, 2010 at 21:09, John Singleton wrote: > I tried to upgrade to this version of the plugin, but am getting

Re: custom src path in maven-compiler-plugin

2010-04-20 Thread Wayne Fay
> Thanks Wayne, that's very helpful. > What if I wanted to create a single jar with test and implementation classes? I've never wanted to do this, personally. I would probably use the assembly plugin to construct this jar. Wayne ---

Re: custom src path in maven-compiler-plugin

2010-04-20 Thread li...@bitfaeule.net
Thanks Wayne, that's very helpful. What if I wanted to create a single jar with test and implementation classes?   TIA   Jacques   Wayne Fay hat am 20. April 2010 um 02:19 geschrieben: > > by default it compiles everything under src/main/java/... which implies it > > doesn't compile the tests un

Re: [ANN] Maven Compiler Plugin 2.3 Released

2010-04-20 Thread John Singleton
I tried to upgrade to this version of the plugin, but am getting download errors on some of its dependencies, namely: org.codehaus.plexus:plexus-compiler-api:jar:1.8 org.codehaus.plexus:plexus-compiler-manager:jar:1.8 org.codehaus.plexus:plexus-compiler-javac:jar:1.8 sample error message from art

Re: Creating jar file of local code within the war

2010-04-20 Thread Shahzad Bhatti
FYI, I was able to do that by adding true To the configuration of maven-war-plugin. On 4/20/10 11:11 AM, "Shahzad Bhatti" wrote: I am using war-plugin for Maven 2, which stores all classes under WEB-INF/classes directory. I would like to instead create a jar file and copy it to the WEB-INF/l

Creating jar file of local code within the war

2010-04-20 Thread Shahzad Bhatti
I am using war-plugin for Maven 2, which stores all classes under WEB-INF/classes directory. I would like to instead create a jar file and copy it to the WEB-INF/lib directory. Can someone suggest a way to do it, thanks. __ See http://www.peak6.com/e

Re: How can I configure these projects with maven and eclipse?

2010-04-20 Thread Justin Edelson
I don't use IAM, but any decent Maven IDE integration shouldn't require changes to you poms. On Apr 20, 2010, at 10:12 AM, Marcial Atienzar Navarro wrote: Hi , I'm using Eclipse IAM. The problem is that I don't know how can I configure the pom. With m2eclipse can I do it easily? I've see thi

Re: How can I configure these projects with maven and eclipse?

2010-04-20 Thread Wayne Fay
> The problem is that I don't know how can I configure the pom. > > With m2eclipse can I do it easily? Ask on the m2eclipse mailing list: http://old.nabble.com/Maven-Eclipse-(m2eclipse)-f14524.html Wayne - To unsubscribe, e-mail

Re: How can I configure these projects with maven and eclipse?

2010-04-20 Thread Marcial Atienzar Navarro
Hi , I'm using Eclipse IAM. The problem is that I don't know how can I configure the pom. With m2eclipse can I do it easily? I've see this url previously: http://maven.apache.org/guides/mini/guide-ide-eclipse.html. Lot of thanks, Marcial El mar, 20-04-2010 a las 09:02 -0500, Wayne F

Re: Is there a way to change the webapp directory name?

2010-04-20 Thread Wayne Fay
> And when I generate the JDeveloper project I still get src/main/webapp as > the directory. Maybe the JDeveloper project plugin is not reading this > property when it's generating the project file. Download the source code for the plugin, take a look, change it if necessary, and contribute your p

Re: Where are there missing jars in repo1, with just .pom files instead

2010-04-20 Thread Wayne Fay
> http://mirrors.ibiblio.org/pub/mirrors/maven2/cobertura/cobertura/1.9rc1/ > Just a .pom file exists. Did you look at the pom file? It is a relocation from cobertura:cobertura to net.sourceforge.cobertura > project, so I suppose it was pulled in transitively. However, my local repo > is miss

Re: How can I configure these projects with maven and eclipse?

2010-04-20 Thread Wayne Fay
>    PROJECT A depends on PROJECT B and PROJECT C >    PROJECT D depends on PROJECT B and PROJECT C >    PROJECT E depends on PROJECT A and PROJECT D > >    what is the best practice to do it, is it possible? What's the problem, exactly? I suggest you use m2eclipse. Wayne ---

Where are there missing jars in repo1, with just .pom files instead

2010-04-20 Thread Pankaj Tandon
Hi, This question is regarding dependencies and how they are stored in repo1 AND my local repo. First, on repo1, I noticed that some versions (of projects) contain jars and some do not. For instance: http://mirrors.ibiblio.org/pub/mirrors/maven2/cobertura/cobertura/1.8/ has jars but http://mirr

How can I configure these projects with maven and eclipse?

2010-04-20 Thread Marcial Atienzar Navarro
Hi, I'm starting with maven. I'm working with eclipse. I've these projects PROJECT A depends on PROJECT B and PROJECT C PROJECT D depends on PROJECT B and PROJECT C PROJECT E depends on PROJECT A and PROJECT D I've migrate PROJECT B and PROJECT C as java projects a packa

Re: Scrolling blindness with maven-javadoc-plugin

2010-04-20 Thread Nick Stolwijk
Try the quiet option. [1] [1] http://maven.apache.org/plugins/maven-javadoc-plugin/javadoc-mojo.html#quiet With regards, Nick Stolwijk ~Java Developer~ IPROFS BV. Claus Sluterweg 125 2012 WS Haarlem http://www.iprofs.nl 2010/4/20 Ognjen Blagojevic : > Hi, > > Is there a way to get rid of the

Re: Native library files

2010-04-20 Thread Andrew Hughes
I'm no expert but I'll try to help. The big question is how are you running your application, is there a specific maven goal/plugin you can speak of? If this is in the same JVM as maven then you'll need to kick maven off with an extra command line argument. If maven fork's the execution off to a s

Scrolling blindness with maven-javadoc-plugin

2010-04-20 Thread Ognjen Blagojevic
Hi, Is there a way to get rid of the "Loading source files for package..." and "Generating ... .html..." messages when using maven-javadoc-plugin? -Ognjen - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For addit