RE: New logo?

2014-01-14 Thread Will Hoover
Stephen, Can you add the following two images to the contest entries? http://s9.postimg.org/ubyk4kczj/maven6.png http://s8.postimg.org/jdcbco351/maven5.png -Original Message- From: Stephen Connolly [mailto:stephen.alan.conno...@gmail.com] Sent: Tuesday, January 14, 2014 11:33 AM To:

RE: New logo?

2014-01-14 Thread Will Hoover
Like this? http://s8.postimg.org/jdcbco351/maven5.png -Original Message- From: paulus.benedic...@gmail.com [mailto:paulus.benedic...@gmail.com] On Behalf Of Paul Benedict Sent: Monday, January 13, 2014 6:32 PM To: Maven Users List Subject: Re: New logo? Great logo, but yes, an orange

RE: New logo?

2014-01-13 Thread Will Hoover
will add it for you If you have a wiki account, I *should* be able to give you access to add it yourself... I'm only the flipping PMC chair like... But for the life of me I cannot find out *how* to do so :-O On Friday, 10 January 2014, Will Hoover wrote: Here's one that may be a little more logo

RE: New logo?

2014-01-10 Thread Will Hoover
...@gmail.com] Sent: Thursday, January 09, 2014 12:48 PM To: Maven Users List Subject: Re: New logo? Added in the list : https://cwiki.apache.org/confluence/display/MAVEN/Logo+contest On Thu, Jan 9, 2014 at 6:35 PM, Will Hoover java.whoo...@gmail.com wrote: Here's a VERY rough draft of a possible

RE: New logo?

2014-01-10 Thread Will Hoover
Subject: Re: New logo? Added in the list : https://cwiki.apache.org/confluence/display/MAVEN/Logo+contest On Thu, Jan 9, 2014 at 6:35 PM, Will Hoover java.whoo...@gmail.com wrote: Here's a VERY rough draft of a possible logo (I'm sure someone else can make it look more sleek): http://s21

RE: New logo?

2014-01-09 Thread Will Hoover
Here's a VERY rough draft of a possible logo (I'm sure someone else can make it look more sleek): http://s21.postimg.org/41q3n4mk7/maven.png -Original Message- From: t.cserve...@gmail.com [mailto:t.cserve...@gmail.com] On Behalf Of Tamás Cservenák Sent: Thursday, January 09, 2014 11:33

Maven Set PATH Environment Variable

2012-12-20 Thread Will Hoover
Anyone know of a way to set environment variables that will be used while Maven is running? I've tried the following, but it doesn't get picked up by subsequent plug-in executions: plugin groupIdorg.codehaus.mojo/groupId

RE: Filter bug with specified characters in xml comments

2012-07-25 Thread Will Hoover
Thanks for the info Wayne! One might think that it would be ignored due to it being within a commented region of the xml, but I guess Maven filtering has no relevance to the type of file it's filtering? -Original Message- From: Wayne Fay [mailto:wayne...@gmail.com] Sent: Tuesday, July

Filter bug with specified characters in xml comments

2012-07-24 Thread Will Hoover
I think there is a bug in the way Maven filters resources... If the following file content is filtered it will not replace the property values with the values in the POM unless the comment line for the connection.url is removed: ?xml version='1.0' encoding='UTF-8'? !DOCTYPE

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

2012-05-24 Thread Will Hoover
that for the database, then you are at least giving the user a private password that will not be any good on another client's database. It all depends on what use case you are trying to handle. Ron On 23/05/2012 12:18 PM, Will Hoover wrote: Was there a reply in there that I'm overlooking

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

2012-05-24 Thread Will Hoover
, Will Hoover wrote: Yeah, the last option where we have the user provide a password is where we're currently headed. Thanks for your input! -Original Message- From: Ron Wheeler [mailto:rwhee...@artifact-software.com] Sent: Wednesday, May 23, 2012 2:21 PM To: users@maven.apache.org Subject

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:

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

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

2012-05-23 Thread Will Hoover
: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 that are self

maven-shade-plugin unziped uber.jar

2012-05-08 Thread Will Hoover
Is there a way to use the maven-shade-plugin to produce an unzipped uber-jar? I know that this can be done using maven-dependency-plugin, but it seems to be much slower and doesn't have some of the features that shade has (like transformers).

Excluding Properties From Resource Filter

2012-04-19 Thread Will Hoover
I was wondering if there was a way to exclude specific properties (not files) from getting filtered? The dilemma is that I am filtering on a logback.xml file for a bunch of needed properties, but I want the ${user.home} system variable to remain as-is in logback.xml so when the application is ran

Re: Excluding Properties From Resource Filter

2012-04-19 Thread Will Hoover
Never mind... I found the answer at http://maven.apache.org/plugins/maven-resources-plugin/examples/escape-filtering.html Sorry for the noise! On Thu, Apr 19, 2012 at 11:53 AM, Will Hoover java.whoo...@gmail.com wrote: I was wondering if there was a way to exclude specific properties

RE: Excluding Properties From Resource Filter

2012-04-19 Thread Will Hoover
Thanks for the info Wayne! I will keep that in mind for future reference. For now, it may be better to use the escape filtering so I won't have to change all my existing ${*}s to something else... very handy though :) -Original Message- From: Wayne Fay [mailto:wayne...@gmail.com]

Plugin configuration property access in POM?

2010-08-31 Thread Will Hoover
Is there a way that a configuration property of a plug-in used in a parent POM be accessed in a child POM? For example, If you had some plug-in like the example below in a parent POM of your project and you wanted to access the configuration property escapeString can you do it in your POM (i.e.

Copy target file from another module

2010-07-21 Thread Will Hoover
I have a multi-module project where one of the modules needs to copy internally generated file(s) that do not come from any maven-aware resources from a module to a WAR module for inclusion. The following works, but it seems like a hack using directory to get to the module where the file(s) exist.

RE: Copy target file from another module

2010-07-21 Thread Will Hoover
target file from another module Hi, create a war with your generated sources and use it as a war overlay regards Thomas Am 21.07.2010 15:49, schrieb Will Hoover: I have a multi-module project where one of the modules needs to copy internally generated file(s) that do not come from any maven

RE: Copy target file from another module

2010-07-21 Thread Will Hoover
that copy files from one module to another. /Thomas On Wed, Jul 21, 2010 at 15:49, Will Hoover java.whoo...@gmail.com wrote: I have a multi-module project where one of the modules needs to copy internally generated file(s) that do not come from any maven-aware resources from a module to a WAR

RE: Running Jar file created by Maven

2009-10-13 Thread Will Hoover
I would stick with the following maven-jar-plugin/maven-dependency-plugin combo (also core plugins): build plugins plugin artifactIdmaven-jar-plugin/artifactId configuration archive

RE: Creating a zip of non-java files

2009-05-11 Thread Will Hoover
you could use the maven-assembly-plugin: src/main/assembly/cfml.xml assembly xmlns=http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

RE: Creating a zip of non-java files

2009-05-11 Thread Will Hoover
...@alagad.com 888 Alagad4 (x300) Office: 919-550-0755 Fax: 888-248-7836 On Mon, May 11, 2009 at 12:08 PM, Will Hoover java.whoo...@gmail.comwrote: you could use the maven-assembly-plugin: src/main/assembly/cfml.xml assembly xmlns= http://maven.apache.org/plugins/maven-assembly-plugin

RE: multi-module pom: do something after build?

2009-03-26 Thread Will Hoover
http://maven.apache.org/plugins/maven-invoker-plugin/examples/post-build-scr ipt.html -Original Message- From: news [mailto:n...@ger.gmane.org] On Behalf Of Kristian Rink Sent: Thursday, March 26, 2009 10:38 AM To: users@maven.apache.org Subject: multi-module pom: do something after

RE: Show maven plug-in configuration options?

2009-03-25 Thread Will Hoover
the info that normally shows on a plugin's website. -Original Message- From: Will Hoover [mailto:java.whoo...@gmail.com] Sent: Tuesday, March 24, 2009 2:50 PM To: 'Maven Users List' Subject: Show maven plug-in configuration options? Does anyone know of a way to show a maven plugin configuration

RE: Show maven plug-in configuration options?

2009-03-25 Thread Will Hoover
plugin: mvn help:describe -Dplugin=war Or this one if you want *all* the info: mvn help:describe -Dplugin=war -Dfull=true Will Hoover wrote: Does anyone know of a way to show a maven plugin configuration options from the mvn command

Show maven plug-in configuration options?

2009-03-24 Thread Will Hoover
Does anyone know of a way to show a maven plugin configuration options from the mvn command? - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

[maven-remote-resources-plugin] resources in a war results in Unknown archiver type

2009-03-22 Thread Will Hoover
How can the maven-remote-resources-plugin be used on a war? In the source war I have: plugin artifactIdmaven-remote-resources-plugin/artifactId executions execution

RE: a sample maven build file for executing a Java file with a main method

2009-03-20 Thread Will Hoover
project ... build plugins plugin groupIdorg.codehaus.mojo/groupId artifactIdexec-maven-plugin/artifactId executions execution ... goals goaljava/goal /goals /execution /executions

RE: Install artifact during build

2009-03-18 Thread Will Hoover
Does anyone know how to accomplish this (using local repository)? -Original Message- From: Wendy Smoak [mailto:wsm...@gmail.com] Sent: Monday, March 16, 2009 10:39 AM To: Maven Users List Subject: Re: Install artifact during build On Mon, Mar 16, 2009 at 7:31 AM, Will Hoover java.whoo

Install artifact during build

2009-03-16 Thread Will Hoover
Is there a way to install an artifact based upon a path defined in pom? I need to have a parent pom that installs a set of proprietary artifacts based upon a path provided by a child pom... Is there a way to do this? - To

RE: Install artifact during build

2009-03-16 Thread Will Hoover
: Install artifact during build On Mon, Mar 16, 2009 at 7:31 AM, Will Hoover java.whoo...@gmail.com wrote: Is there a way to install an artifact based upon a path defined in pom? I need to have a parent pom that installs a set of proprietary artifacts based upon a path provided by a child pom

Install Artifacts During Build

2009-03-16 Thread Hoover, William
Is there a proper way to install an artifact during the build process based upon a path? There is a proprietary set of artifacts that I would like to define in the a parent pom that will install the artifacts based upon a path defined in the child project pom.

RE: Archiva and Maven 2.0.9, defect POM

2009-02-02 Thread Hoover, William
Once you have deleted the directory from disk you will have to update the database (admin: database update database now) and scan your repository (admin: repositories scan repository now). -Original Message- From: Michael Hüttermann [mailto:mich...@huettermann.net] Sent: Monday,

RE: Archiva and Maven 2.0.9, defect POM

2009-02-02 Thread Hoover, William
We had similar issues with archiva. These type of issues were resolved when we went to http://nexus.sonatype.org/ -Original Message- From: Michael Hüttermann [mailto:mich...@huettermann.net] Sent: Monday, February 02, 2009 11:45 AM To: users@maven.apache.org Subject: Archiva and Maven

Exclude plugin dependency defined in parent pom?

2009-01-21 Thread Hoover, William
Is there a way to Exclude a plugin dependency declared in a parent pom? We have an enterprise level pom that turns WTP capabilities by default: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-eclipse-plugin/artifactId configuration

RE: Exclude plugin dependency defined in parent pom?

2009-01-21 Thread Hoover, William
Addendum: I know that we can turn WTP off by overriding the configuration. I was just wondering if there is a way to exclude the plugin in the child pom to prevent any other compatibility issues that may arise. -Original Message- From: Hoover, William [mailto:whoo...@nemours.org] Sent

RE: Validate POM

2008-11-13 Thread Hoover, William
project xmlns=http://maven.apache.org/POM/4.0.0; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd; -Original Message- From: Trevor Harmon [mailto:[EMAIL PROTECTED] Sent:

RE: Use eclipse to compile

2008-11-11 Thread Hoover, William
${org.eclipse.jdt.core.version}/version /dependency /dependencies /plugin Regards, Rice On Tue, Nov 11, 2008 at 2:17 AM, Rice Yeh [EMAIL PROTECTED] wrote: Thanks, it works. On Tue, Nov 11, 2008 at 1:38 AM, Hoover, William [EMAIL PROTECTED]wrote: http

RE: Use eclipse to compile

2008-11-10 Thread Hoover, William
http://article.gmane.org/gmane.comp.jakarta.turbine.maven.user/91072 -Original Message- From: Rice Yeh [mailto:[EMAIL PROTECTED] Sent: Monday, November 10, 2008 12:30 PM To: users@maven.apache.org Subject: Use eclipse to compile Hi, I am following the instructions on

RE: maven-compiler-plugin using eclipse

2008-10-24 Thread Hoover, William
org.eclipse.jdt.core.version3.4.2.v_883_R34x/org.eclipse.jdt.version /properties ... -Original Message- From: Hoover, William [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2008 2:49 PM To: users@maven.apache.org Subject: maven-compiler-plugin using eclipse In maven version 2.0.8 we

maven-compiler-plugin using eclipse

2008-10-23 Thread Hoover, William
In maven version 2.0.8 we originally tried the following, but it did not resolve the generics issue that the plexus compiler has related to http://jira.codehaus.org/browse/PLXCOMP-100: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-compiler-plugin/artifactId

RE: [POLL] Default Value for Reports Output Encoding

2008-08-06 Thread Hoover, William
+1 -Original Message- From: Manos Batsis [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 06, 2008 6:16 AM To: Maven Users List Subject: Re: [POLL] Default Value for Reports Output Encoding [a] Use UTF-8 Cheers, Manos

RE: [ANN] Maven Eclipse Plugin 2.5 Released

2008-03-19 Thread Hoover, William
for me as well. Arne. -Opprinnelig melding- Fra: Hoover, William [mailto:[EMAIL PROTECTED] Sendt: 18. mars 2008 19:33 Til: Maven Users List Emne: RE: [ANN] Maven Eclipse Plugin 2.5 Released I found that replacing... localRepository/path/to/repo/localRepository with... localRepositoryC

RE: [ANN] Maven Eclipse Plugin 2.5 Released

2008-03-18 Thread Hoover, William
Using mvn eclipse:clean eclipse:eclipse with version 2.5. For example, if M2_REPO = /path/to/repo executing the command renders build paths for dependencies for project as M2_REPO/path/to/repo/commons-collections/commons-collections/3.2/commons-collections-3.2.jar If I use version 2.4 M2_REPO

RE: [ANN] Maven Eclipse Plugin 2.5 Released

2008-03-18 Thread Hoover, William
Released +1. Same problem here. Just saw the behaviour some minutes ago. Precision: I'm not using the default repository location, this might a cause of this problem. Do you want someone to log a bug in the tracker, Arnaud? Cheers. -Message d'origine- De : Hoover, William [mailto

RE: [ANN] Maven Eclipse Plugin 2.5 Released

2008-03-18 Thread Hoover, William
, 2008 at 1:56 PM, Hoover, William [EMAIL PROTECTED] wrote: I'm not using the default repository location either. I think you may be right- it may have something to do with that. -Original Message- From: MATHUS Baptiste [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 18, 2008

RE: [ANN] Maven Eclipse Plugin 2.5 Released

2008-03-18 Thread Hoover, William
switching to 2.5, but so far only in when packaging are war, not jar or ejb. I'm using wtpversion 2.0. I'm using windows XP, Maven 2.0.8 Arne. -Opprinnelig melding- Fra: Hoover, William [mailto:[EMAIL PROTECTED] Sendt: 18. mars 2008 17:36 Til: Maven Users List Emne: RE: [ANN] Maven Eclipse

RE: [ANN] Maven Eclipse Plugin 2.5 Released

2008-03-18 Thread Hoover, William
anyone else verify that this fixes their issues as well? -Original Message- From: Hoover, William [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 18, 2008 12:57 PM To: Maven Users List Subject: RE: [ANN] Maven Eclipse Plugin 2.5 Released I tested with packaging as jar or war and still have

[maven-checkstyle-plugin] Including test classes in report?

2008-01-31 Thread Hoover, William
Does anyone know a way to include test classes (src/test/java) in the checkstyle report? I am only recieving results for packaged classes (src/main/java) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

RE: [maven-checkstyle-plugin] Including test classes in report?

2008-01-31 Thread Hoover, William
] Including test classes in report? I see you can only give one sourcedirectory, but you can add the parameter includeTestSourceDirectory [1]. Hth, Nick Stolwijk [1] http://maven.apache.org/plugins/maven-checkstyle-plugin/checkstyle-mojo.html#includeTestSourceDirectory Hoover, William wrote

RE: mvn deploy on Artifactory gives File transfer error (Return Code 401)

2007-12-26 Thread William Hoover
We get the same error in Archiva. I noticed that after a few attempts it deploys properly. Does this occur in Artifactory as well? -Original Message- From: Erik Drolshammer [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 26, 2007 7:26 AM To: Maven Users List Subject: Re: mvn deploy

RE: Eclipse Maven2 Plugin

2007-12-24 Thread William Hoover
1) Set localRepository[path-to-your-local-repo]/localRepository in [your-maven-install-dir]/conf/settings.xml 2) Make sure that you remove your ~/.m2 directory 3) Add the M2_REPO: mvn -Declipse.workspace=path-to-eclipse-workspace eclipse:add-maven-repo 4) mvn eclipse:clean eclipse:eclipse 5)

RE: RE: Eclipse Maven2 Plugin

2007-12-24 Thread William Hoover
Right, but you can use maven-eclipse-plugin to create an eclipse project that is ready to use m2eclipse: http://maven.apache.org/plugins/maven-eclipse-plugin/m2eclipse-mojo.html -Original Message- From: news [mailto:[EMAIL PROTECTED] Behalf Of Jan Torben Heuer Sent: Monday, December 24,

RE: JDK 1.5 java.lang.Enum Buid Failure using Maven 2.0.8

2007-12-11 Thread William Hoover
project, create a JIRA issue, and attach it. Then someone can look at your issue more closely. Wayne On 12/10/07, William Hoover [EMAIL PROTECTED] wrote: No takers? -Original Message- From: William Hoover [mailto:[EMAIL PROTECTED] Sent: Saturday, December 08, 2007 8:13 PM To: users

RE: JDK 1.5 java.lang.Enum Buid Failure using Maven 2.0.8

2007-12-10 Thread William Hoover
No takers? -Original Message- From: William Hoover [mailto:[EMAIL PROTECTED] Sent: Saturday, December 08, 2007 8:13 PM To: users@maven.apache.org Subject: JDK 1.5 java.lang.Enum Buid Failure using Maven 2.0.8 I am using JDK 1.5 / Maven 2.0.8 and am attempting mvn clean install

JDK 1.5 java.lang.Enum Buid Failure using Maven 2.0.8

2007-12-08 Thread William Hoover
I am using JDK 1.5 / Maven 2.0.8 and am attempting mvn clean install on a simple project that contains the following snippet: ... public final Class? extends Enum? extends IDTOPhase getDTOPhaseLifeCycleStrategy(){ return someEnumClass; } ... for(java.lang.Enum? extends IDTOPhase

Does the version range syntax support release numbers?

2006-01-03 Thread Roger Hoover
Hi, Is there support for release numbers like 2.0.1-1? Can they include alpha characters like 2.0.1-1foo? http://docs.codehuas.org seems to be down right now but I previously found some documentation of the version range syntax and I didn't see any mention of release numbers.

Re: [m2] How dependency versions are resolved with transitivity?

2005-11-09 Thread Roger Hoover
), or just fail if there is more than one recommendation. While the documentation is still pending, there is a design document on docs.codehaus.org http://docs.codehaus.org that explains the range syntax. Hope this helps, Brett On 11/9/05, Roger Hoover [EMAIL PROTECTED] wrote: My understanding

Re: [m2] How dependency versions are resolved with transitivity?

2005-11-08 Thread Roger Hoover
My understanding is that Maven 2 supports a syntax for specifying a range of versions in a dependency. What is the syntax for this? I searched the Maven site and found only a link saying documentation was needed for it ( http://maven.apache.org/maven2/docs-required.html). Will transitive

Re: Building C++ projects with Maven (2)

2005-11-01 Thread Roger Hoover
Right. I suspect that native artifacts will have to be delineated by both CPU architecture and OS distribution. There's generally a tight coupling between the binary and the compiler version and glibc version and possibly other system libraries. So the repository would need a scheme something like

Re: Building C++ projects with Maven (2)

2005-11-01 Thread Roger Hoover
The concern I would have with this is that you have the same logical package (let's say apr 1.2.2) built for different architectures needing to have a different groupId or artifactId for each architecture type. Unless the groupId or artifactId is constructed dynamically, poms that depend on a

Re: Building C++ projects with Maven (2)

2005-11-01 Thread Roger Hoover
solution would only support one target environment? Perhaps a mechanism for management of iterative profiles in order to target environment. -Original Message- From: Roger Hoover [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 01, 2005 12:28 PM To: Maven Users List Subject: Re