Is it possible to package several applets into a war and overlay with webapp war

2012-04-23 Thread wzhao6898
Hi there, I have a maven project with several modules, one of them being applet module, where I'll build several jars, later on package them into zip file using assembly plugin, and use it (applet zip file) as one of the dependencies in the webapp module pom.xml. Is there better way of doing

Re: Maven 3.0.3 hanging / having timeouts often?

2012-04-23 Thread arro
Sorry for resurrecting an old thread, but I'm having the exact same problem with Maven 3.0.4 timing out while trying to download artifacts. Right now I'm running Maven from home, with no proxy. The problem also occured when I tried to use the same laptop at work, with a Nexus repository manager.

WebSphere 7: Portlet-EAR deployment

2012-04-23 Thread Marc Schlegel
Hello everyone We are currentyl facing an issue with a Portlet that is packaged by Maven 3.0.4) and deployed to WebSphere 7. The project consists only of a Parent that has a EAR- and a WAR-module. I should mention first that we use JavaEE 5 and Rational Software Architect 8 (RSA). The

Re: jarsigner plugin - An API incompatibility was encountered while executing org.apache.maven.plugins:maven-jarsigner-plugi

2012-04-23 Thread mlnsharma
I cleared my local repository and followed steps according to the below link. This solved my problem ! http://stackoverflow.com/questions/2027753/how-to-deploy-applet-with-dependencies-jar-using-maven-and-sign-it -- View this message in context:

Re: Maven 3.0.3 hanging / having timeouts often?

2012-04-23 Thread Wayne Fay
I'm on Windows 7 and cygwin (CYGWIN_NT-6.1-WOW64). I have removed my ~/.m2/settings.xml to see if that made any difference -- it did not. There does not appear to be any network problem, I can download the artifacts manually (in Firefox) just fine. Can you try building your projects with

Incorrectly generated URLs in pom's using maven release plugin

2012-04-23 Thread Lewis John Mcgibbney
Hi, When pushing out a release candidate for a VOTE, it was brought to my attention that all generated module pom's contain incorrect URLs. I've attached a brief description of what is wrong below with the link to the staged repos here [0]. The release plugin is version 2.2.2 There are some

RE: Is it possible to package several applets into a war and overlay with webapp war

2012-04-23 Thread Matt Walsh
You already have them as jars. Why not just make them dependencies of your war project? Matt -Original Message- From: wzhao6898 [mailto:wzhao6...@gmail.com] Sent: Monday, April 23, 2012 12:00 AM To: users@maven.apache.org Subject: Is it possible to package several applets into a war

Re: Maven 3.0.3 hanging / having timeouts often?

2012-04-23 Thread martin.eisengardt
I got some similar problems. https://bugs.eclipse.org/bugs/show_bug.cgi?id=362418 Seems that java itself or maven or any other thing is not liking my aviara firewall or my network device. There are some other java apps that sometime have the same connection problems resulting in timeouts. Are

Unresolveable build extension (wagon-ssh) when executing site:site on multi-module project

2012-04-23 Thread Richard Eggert
Greetings, I have found what appears to be a bug in the maven-site-plugin (or some component upon which it depends) that is causing it to fail if a build extension cannot be resolved against central when executing site:site on a multi-module project. My setup is as follows: I am working on a

Webapp resource filtering

2012-04-23 Thread Marko Asplund
Hi, What's the best way to do property value interpolation on JSP file contents in a webapp project? The following pom.xml snippet seems to do the trick: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-war-plugin/artifactId version2.2/version configuration webResources resource

Re: Incorrectly generated URLs in pom's using maven release plugin

2012-04-23 Thread Dennis Lundberg
On 2012-04-23 16:48, Lewis John Mcgibbney wrote: Hi, Hi Lewis When pushing out a release candidate for a VOTE, it was brought to my attention that all generated module pom's contain incorrect URLs. I've attached a brief description of what is wrong below with the link to the staged repos

Are, activeProfiles ALWAYS active? (updatePolicyinterval:5/.. not working)

2012-04-23 Thread Andrew Hughes
Hi All, I have configured the following to perform (local) snapshot updates every 5mins... unfortunately the dependencies DO NOT update at the prescribed 5min interval. Could it be that the activeProfiles do not ALWAYS activate? I do have a specific -P dev (project defined) profile enabled while

Re: Are, activeProfiles ALWAYS active? (updatePolicyinterval:5/.. not working)

2012-04-23 Thread Benson Margulies
On Mon, Apr 23, 2012 at 9:00 PM, Andrew Hughes ahhug...@gmail.com wrote: Hi All, I have configured the following to perform (local) snapshot updates every 5mins... unfortunately the dependencies DO NOT update at the prescribed 5min interval. Could it be that the activeProfiles do not ALWAYS

Re: [maven] Re: Mirroring repo1.maven.apache.org

2012-04-23 Thread Andrew Hughes
You asked... I agree that the Nexus pull only when needed is nice. But there are other concerns too. The real question is there a strong reason for not using rsync other than use Nexus. Yes. 1. I use nexus so that I limit the bandwidth I share with YOU (from hosted repositories). No one

Re: Are, activeProfiles ALWAYS active? (updatePolicyinterval:5/.. not working)

2012-04-23 Thread Richard W. Eggert II
On 4/23/2012 9:15 PM, Benson Margulies wrote: On Mon, Apr 23, 2012 at 9:00 PM, Andrew Hughesahhug...@gmail.com wrote: Hi All, I have configured the following to perform (local) snapshot updates every 5mins... unfortunately the dependencies DO NOT update at the prescribed 5min interval. Could

Re: [maven] Re: Mirroring repo1.maven.apache.org

2012-04-23 Thread Brian Topping
On Apr 23, 2012, at 9:23 PM, Andrew Hughes wrote: 2. Nexus will allow you to proxy/mirror a lot more than one repository, it will also allow you to place rules on repositories and additional configuration. This is worth noting in a large / paranoid corporate environment from a couple

Re: Are, activeProfiles ALWAYS active? (updatePolicyinterval:5/.. not working)

2012-04-23 Thread Andrew Hughes
OK, I found a way to confirm... activeProfiles are always active Exactly what I wanted as documented :) However, the problem persisted... until... I noticed that builds on the command line worked fine, as did 'install' e.t.c from within eclipse. However, the m2eclipse dependencies refused

Re: Are, activeProfiles ALWAYS active? (updatePolicyinterval:5/.. not working)

2012-04-23 Thread Wayne Fay
Why would m2e have a difference update/cache policy on dependencies to that of maven? You'd have to ask that on the m2e users list @ Eclipse.org. They have their own list(s). Wayne - To unsubscribe, e-mail:

Re: Webapp resource filtering

2012-04-23 Thread Wayne Fay
Is this the correct way to do JSP filtering? Looks reasonable to me. What kind of JSP filtering are you doing? This seems to have some side effects with the JRebel plugin starting to generate a different kind of rebel.xml file. I'm using Maven 3.0. What specifically are you running into?