Validating archive created by assembly plugin

2012-05-23 Thread Bracewell, Robert
Hi, >From time to time developers change assembly descriptors and then what I think >is being packaged may not actually be what I expect to be packaged. Anyone out there taking steps to verify the contents of an archive and if so how are you going about such? I was thinking of writing a number

Re: Values from pom.xml being injected into deployed jsp attributes

2012-05-23 Thread Barrie Treloar
On Thu, May 24, 2012 at 9:01 AM, Matt Veitas wrote: > I confirmed that resource filtering is only happening to the files are > targeting. I also made just to run the maven install with -X to make sure > that the filtering was only happening the specified resources. > > If I explode the war file it

Re: Values from pom.xml being injected into deployed jsp attributes

2012-05-23 Thread Matt Veitas
I confirmed that resource filtering is only happening to the files are targeting. I also made just to run the maven install with -X to make sure that the filtering was only happening the specified resources. If I explode the war file it contains the jsp files that still contain the ${name} and ${u

Re: Values from pom.xml being injected into deployed jsp attributes

2012-05-23 Thread Barrie Treloar
On Thu, May 24, 2012 at 4:35 AM, Matt Veitas wrote: > Recently the project I am working on ran into a very strange situation when > deploying a war file built with Maven where we were seeing values from the > pom.xml that was within the deployed war file replacing values in our jsp > files at runt

Re: please remove me from users mailing list

2012-05-23 Thread Kurt Stam
Please make sure you did not sign up with another email address. On May 23, 2012, at 18:27, "Hessick, Michael" wrote: > You can unsubscribe, but you can never leave ! > > -Original Message- > From: a a [mailto:thebig...@hotmail.com] > Sent: Wednesday, May 23, 2012 4:01 PM > To: Maven

RE: please remove me from users mailing list

2012-05-23 Thread Hessick, Michael
You can unsubscribe, but you can never leave ! -Original Message- From: a a [mailto:thebig...@hotmail.com] Sent: Wednesday, May 23, 2012 4:01 PM To: Maven Users List Subject: Re: please remove me from users mailing list This is actually the Hotel California! -Original Message-

Re: How to do a release build in Maven?

2012-05-23 Thread Ed Hillmann
I think the first thing you should do is compare what you define as "release" and compare it with what the Release plugin does. "Release" is a loaded term for everyone making software. A Release in Maven means it's a fixed point in the lifecycle of the artifact. In a strictly maven-versioning te

Re: How to do a release build in Maven?

2012-05-23 Thread Ed Hillmann
Perhaps this is what you're after? http://maven.apache.org/guides/mini/guide-releasing.html >From Maven's documentation page: http://maven.apache.org/guides/index.html Doing a release in Maven is a way of generating "official" (non-snapshot) releases of the artifacts. Which supports things like

Re: please remove me from users mailing list

2012-05-23 Thread a a
This is actually the Hotel California! -Original Message- From: a a Sent: Wednesday, May 23, 2012 9:56 PM To: Maven Users List Subject: Re: please remove me from users mailing list No I cannot do that Mike I am not a list admin. -Original Message- From: Hessick, Michael Sent

Re: please remove me from users mailing list

2012-05-23 Thread a a
No I cannot do that Mike I am not a list admin. -Original Message- From: Hessick, Michael Sent: Wednesday, May 23, 2012 5:27 PM To: Maven Users List (users@maven.apache.org) Subject: please remove me from users mailing list Would someone please remove me from the users mailing list?

RE: How to do a release build in Maven?

2012-05-23 Thread hujirong
The first page doesn't have anything about what does "release" mean in Maven, all about usage, and I have to dig into the usage try to find out what it want to achieve. This is too Agile. Jirong -- View this message in context: http://maven.40175.n5.nabble.com/How-to-do-a-release-build-in-Maven-

Re: How can I eliminate these embedded username and password entries?

2012-05-23 Thread Ron Wheeler
I used invisible ink. You are right that the passwords are in clear text in the JNDI but they are in a place where they are not supposed to be visible to anyone except the system administrator. For desktop applications, you can embed the passwords in the code and hope that the customers do n

RE: How can I eliminate these embedded username and password entries?

2012-05-23 Thread Will Hoover
Was there a reply in there that I'm overlooking? -Original Message- From: Ron Wheeler [mailto:rwhee...@artifact-software.com] Sent: Wednesday, May 23, 2012 11:50 AM To: users@maven.apache.org Subject: Re: How can I eliminate these embedded username and password entries? On 23/05/2012 10:

Re: How can I eliminate these embedded username and password entries?

2012-05-23 Thread Ron Wheeler
On 23/05/2012 10:33 AM, Will Hoover wrote: Great posts! Thank you! My only concern with the proposed solutions are the following: 1) Remote resources, scripts, etc. are great for internal network deployments (or "ships") such as web applications, but what about desktop or mobile applications tha

RE: How can I eliminate these embedded username and password entries?

2012-05-23 Thread Will Hoover
Great posts! Thank you! My only concern with the proposed solutions are the following: 1) Remote resources, scripts, etc. are great for internal network deployments (or "ships") such as web applications, but what about desktop or mobile applications that are self contained? 2) Even with JNDI and o

Re: How can I eliminate these embedded username and password entries?

2012-05-23 Thread Ron Wheeler
This has come up so often I wrote some blogs on it. http://blog.artifact-software.com/tech/?tag=jndi On 23/05/2012 9:05 AM, Barrie Treloar wrote: On Wed, May 23, 2012 at 10:23 PM, Will Hoover wrote: This is an interesting topic of interest. We would like to do a similar thing with our DB pas

Re: Feel Maven is not intuitive

2012-05-23 Thread Ron Wheeler
I would also add the following: 1) Make sure that you have a repo. Maven without a repo is much less intuitive. 2) Make sure that your IDE is set up to support Maven so you do not have to switch back and forth between your IDE and Maven. We use Eclipse STS from Springframework. It comes with Ma

Re: How can I eliminate these embedded username and password entries?

2012-05-23 Thread Barrie Treloar
On Wed, May 23, 2012 at 10:23 PM, Will Hoover wrote: > This is an interesting topic of interest. We would like to do a similar thing > with our DB passwords that are in our POMs. Are there any other options other > than the ones described? Search the archives. External Resources used at Runtime

RE: How can I eliminate these embedded username and password entries?

2012-05-23 Thread Will Hoover
This is an interesting topic of interest. We would like to do a similar thing with our DB passwords that are in our POMs. Are there any other options other than the ones described? -Original Message- From: shaun.t.erick...@accenture.com [mailto:shaun.t.erick...@accenture.com] Sent: Tue

Re: m-source-p excludes regex support

2012-05-23 Thread Ryan Connolly
Thanks, Jeff. I was hoping there might be some logic in the include/exclude functionality that would allow includes to use an explicit file name while excluding the others that matched the exclude pattern. Anyway, we found a way to set the prefix of one of the sets of generated sources which allow

Re: Feel Maven is not intuitive

2012-05-23 Thread Graham Leggett
On 23 May 2012, at 1:59 AM, hujirong wrote: > After working with Maven for a month, I am still not quite understand how > Maven works. Maybe just like Microsoft technologies, encapsulate too much. > One key issue is to understand the plugin. The way to think of maven is: "maven knows how to do s

Re: m-source-p excludes regex support

2012-05-23 Thread Jeff MAURY
You must understand that excludes limits the set configured by includes. So your configuration will has no sources as Quote.java will be discarded by Q*.java Review your configuration Jeff On Mon, May 21, 2012 at 7:44 PM, Ryan Connolly wrote: > Hello, Maven Users: > I am faced with a situatio

Re: Feel Maven is not intuitive

2012-05-23 Thread John Patrick
Do you specifically want to know about the compile plugin or plugin's in general. http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html might be a useful site to read. When helping a new developer understand maven, below is what I go though with them. 1) Understand maven

[ANN] License Maven plugin 1.1 Released

2012-05-23 Thread Tony Chemit
Hi, The Mojo team is pleased to announce the release of the License Maven plugin version 1.1 This plugin manages the license of a maven project and its dependencies (update file headers, download dependencies licenses, check thirdparty licenses, ...). To get this update, simply specify the versi