Re: Hi, where can we get the maven1.x?

2013-02-07 Thread Joe Zhang
thank u! Thanksgiving! On Feb 8, 2013, at 12:59 PM, Barrie Treloar wrote: > On 8 February 2013 15:23, Barrie Treloar wrote: >> On 8 February 2013 14:25, Joe Zhang wrote: >>> The URL will jump to the mirror list page. And each mirror is invalid with >>> 404 error. >> >> http://lmgtfy.com/?q

Re: Hi, where can we get the maven1.x?

2013-02-07 Thread Barrie Treloar
On 8 February 2013 15:23, Barrie Treloar wrote: > On 8 February 2013 14:25, Joe Zhang wrote: >> The URL will jump to the mirror list page. And each mirror is invalid with >> 404 error. > > http://lmgtfy.com/?q=maven-1.1.exe > > Shows http://archive.apache.org/dist/maven/binaries/ as the first hi

Re: Hi, where can we get the maven1.x?

2013-02-07 Thread Barrie Treloar
On 8 February 2013 14:25, Joe Zhang wrote: > The URL will jump to the mirror list page. And each mirror is invalid with > 404 error. http://lmgtfy.com/?q=maven-1.1.exe Shows http://archive.apache.org/dist/maven/binaries/ as the first hit. ---

Re: Hi, where can we get the maven1.x?

2013-02-07 Thread Joe Zhang
The URL will jump to the mirror list page. And each mirror is invalid with 404 error. Thanks! On Feb 8, 2013, at 10:27 AM, Maria Odea Ching-Mallete wrote: > Hi, you can download it from here: > > http://maven.apache.org/maven-1.x/start/download.html > > Thanks, > Deng > > On Fri, Feb 8, 20

Re: Hi, where can we get the maven1.x?

2013-02-07 Thread Maria Odea Ching-Mallete
Hi, you can download it from here: http://maven.apache.org/maven-1.x/start/download.html Thanks, Deng On Fri, Feb 8, 2013 at 10:21 AM, Joe Zhang wrote: > > > Thanksgiving! > > - > To unsubscribe, e-mail: users-unsubscr...@mave

Re: Problem reusing specific plugin executions with profiles

2013-02-07 Thread Wayne Fay
> 1. Congratulations on successfully posting XML from Nabble. Until now, I > genuinely did not think it was possible (as evidenced by the many many > posts via Nabble where the xml is stripped). I take your success as an > indication that you are a smart guy with some technical savvy No offense to

Hi, where can we get the maven1.x?

2013-02-07 Thread Joe Zhang
Thanksgiving! - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: Problem reusing specific plugin executions with profiles

2013-02-07 Thread Stephen Connolly
1. Congratulations on successfully posting XML from Nabble. Until now, I genuinely did not think it was possible (as evidenced by the many many posts via Nabble where the xml is stripped). I take your success as an indication that you are a smart guy with some technical savvy 2. Maven is an opinio

Re: Jar file not in maven

2013-02-07 Thread Ron Wheeler
On 07/02/2013 3:16 PM, Joachim Durchholz wrote: Am 07.02.2013 15:53, schrieb Ron Wheeler: On 07/02/2013 4:50 AM, Joachim Durchholz wrote: Am 07.02.2013 00:00, schrieb Barrie Treloar: You could always pony up some of your own money for a server or try finding a free hosting service and install

Re: Jar file not in maven

2013-02-07 Thread Barrie Treloar
On 7 February 2013 20:20, Joachim Durchholz wrote: > Am 07.02.2013 00:00, schrieb Barrie Treloar: > >> You could always pony up some of your own money for a server or try >> finding a free hosting service and install the MRM there. >> You could even leave your home computer on all the time and let

Problem reusing specific plugin executions with profiles

2013-02-07 Thread Matthew Adams
Background: I have a layered architecture, built via a multimodule Maven project, and I use profiles to activate which relational database (derby, mysql, or sqlserver) & driver (derby, myssql, jtds, or msjdbc) is used for any given build. Obviously, the derby database uses the derby driver, mysql

Re: Create Windows executable JAR

2013-02-07 Thread David Karr
If you're just trying to build a windows executable, I've been able to use "launch4j" to make this happen. It works perfectly fine for what I've used it for. On Thu, Feb 7, 2013 at 9:34 AM, Jeff MAURY wrote: > Hello, > > I have the following request: > I want to build with Maven a Windows execu

Re: Create Windows executable JAR

2013-02-07 Thread hanasaki
Take a look at onejar. There is a maven plugin as well. Original Message Subject: Re: Create Windows executable JAR From: Eric Kolotyluk To: Maven Users List Date: 02/07/2013 02:34 PM > I have often built a single .jar file that will launch if you double-click > it from a deskt

Re: Property inheritance does exist?

2013-02-07 Thread Stephen Connolly
Please take a couple of minutes to read my answer to a very similar question on stack overflow http://stackoverflow.com/questions/14725197/reading-properties-file-from-pom-file-in-maven/14727072#14727072 It should hopefully make things a little clearer -Stephen On Thursday, 7 February 2013, Gra

Re: Property inheritance does exist?

2013-02-07 Thread Ansgar Konermann
Am 07.02.2013 21:49 schrieb "Ansgar Konermann" < ansgar.konerm...@googlemail.com>: > > Property inheritance works for properties you put into the properties section of a parent pom. > > The m-build-helper-p s/build-helper/properties/ > creates properties dynamically *after* maven already executed

Re: Property inheritance does exist?

2013-02-07 Thread Ansgar Konermann
Property inheritance works for properties you put into the properties section of a parent pom. The m-build-helper-p creates properties dynamically *after* maven already executed pom parsing and property inheritance. I. e.: inheriting dynamic properties does not work. HTH Ansgar Am 07.02.2013 21:

Re: MRM inside Eclipse

2013-02-07 Thread Curtis Rueden
Hi Joachim, > Unfortunately, the copying plugin spat "not bound to that lifecycle phase" > errors at me when I tried to run it during the compile phase. I'm not sure > whether that's overridable, I thought it should be but then found was already > specified in an ... bummer. Just in case you didn

Re: Create Windows executable JAR

2013-02-07 Thread Eric Kolotyluk
I have often built a single .jar file that will launch if you double-click it from a desktop or folder. I have even created a single file that works equally well on Windows, Mac and Linux. The catch is, however, that you have to have Java already installed, and your desktop environment needs to as

Property inheritance does exist?

2013-02-07 Thread Graf László
Hello, I try to port an existing ANT based build system to Maven. I set in my root POM (A) the org.codehaus.mojo:properties-maven-plugin to read all required properties from an existing property file. Of course, this property file was specified relative to the A project. That works fine. But wh

Property inheritance does exist?

2013-02-07 Thread Graf László
Hello, I try to port an existing ANT based build system to Maven. I set in my root POM (A) the org.codehaus.mojo:properties-maven-plugin to read all required properties from an existing property file. That works fine. But when I create a new Maven module (B) where I set its parent to be A, it com

Re: Jar file not in maven

2013-02-07 Thread Joachim Durchholz
Am 07.02.2013 15:53, schrieb Ron Wheeler: On 07/02/2013 4:50 AM, Joachim Durchholz wrote: Am 07.02.2013 00:00, schrieb Barrie Treloar: You could always pony up some of your own money for a server or try finding a free hosting service and install the MRM there. You could even leave your home com

Re: MRM inside Eclipse

2013-02-07 Thread Joachim Durchholz
Am 07.02.2013 11:32, schrieb Adrien Rivard: but by default they are going there. And you don't need to run an "install", just refresh/build the project with eclipse. Hm... testing with a parent project... ... nope. Running a Maven launch with a "package" goal doesn't add any file to disk as

Re: Create Windows executable JAR

2013-02-07 Thread Curtis Rueden
Hi Jeff, > I want to build with Maven a Windows executable given the fact > that I am able to produce an executable JAR. To my knowledge, it is not a cleanly solved problem. My team solved it by writing our own cross-platform launcher application in C [1]. There are many technical details in the

Create Windows executable JAR

2013-02-07 Thread Jeff MAURY
Hello, I have the following request: I want to build with Maven a Windows executable given the fact that I am able to produce an executable JAR. I have seen the Codehaus appasembler Maven plugin but it seems it produces several files where I want to produce a single .exe file. Do you know if such

Re: New Maven idea: include (import++)?

2013-02-07 Thread Ron Wheeler
On 07/02/2013 10:03 AM, Matthew Adams wrote: On Tue, Feb 5, 2013 at 9:57 AM, Ron Wheeler > wrote: [snip] We do make a single jar for each group in the group POM and put that in the Tomcat lib at run time. This just keeps the clutter down.

Re: New Maven idea: include (import++)?

2013-02-07 Thread Laird Nelson
On Thu, Feb 7, 2013 at 6:55 AM, Matthew Adams wrote: > Sheesh. Maybe it's worth documenting that explicitly. For whatever > reason, after reading the import documentation, I wouldn't > have thought to just add pom to my convenience pom. > Like I said, don't feel bad; it took me years before I r

Re: New Maven idea: include (import++)?

2013-02-07 Thread Matthew Adams
On Tue, Feb 5, 2013 at 9:57 AM, Ron Wheeler wrote: > [snip] > We do make a single jar for each group in the group POM and put that in the > Tomcat lib at run time. > This just keeps the clutter down. > It makes sure that we get the same versions of everything with which we > did the builds of the

Re: New Maven idea: include (import++)?

2013-02-07 Thread Matthew Adams
On Tue, Feb 5, 2013 at 9:29 AM, Laird Nelson wrote: > On Tue, Feb 5, 2013 at 6:10 AM, Matthew Adams >wrote: > > > What I was looking > > for was a way to define a new artifact in a pom that, if used in a > > consuming artifact's , would include all of the > dependencies > > in the referenced art

Re: Jar file not in maven

2013-02-07 Thread Ron Wheeler
On 07/02/2013 4:50 AM, Joachim Durchholz wrote: Am 07.02.2013 00:00, schrieb Barrie Treloar: You could always pony up some of your own money for a server or try finding a free hosting service and install the MRM there. You could even leave your home computer on all the time and let your other re

Re: MRM inside Eclipse

2013-02-07 Thread Ron Wheeler
On 07/02/2013 4:32 AM, Joachim Durchholz wrote: Am 06.02.2013 23:43, schrieb Adrien Rivard: On Wed, Feb 6, 2013 at 9:55 PM, Joachim Durchholz wrote: Now I'm wondering where m2e is putting things if I run a Maven launch with an "install" target. It's definitely not going to ~/.m2/repository.

Re: MRM inside Eclipse

2013-02-07 Thread Adrien Rivard
On Thu, Feb 7, 2013 at 10:32 AM, Joachim Durchholz wrote: > Am 06.02.2013 23:43, schrieb Adrien Rivard: > >> On Wed, Feb 6, 2013 at 9:55 PM, Joachim Durchholz >> wrote: >> >> Now I'm wondering where m2e is putting things if I run a Maven launch >>> with >>> an "install" target. >>> It's definit

Re: MRM inside Eclipse

2013-02-07 Thread Joachim Durchholz
Am 06.02.2013 22:51, schrieb Ron Wheeler: To mention it about the fifth time: The m2e repo is NOT the local cache repo. The m2e repo lives in in an Eclipse-managed directory (in .metadata/plugins IIRC). The local (cache) repo lives in ~/.m2. These two repos are shown in the Maven Repositories ta

Re: Jar file not in maven

2013-02-07 Thread Joachim Durchholz
Am 07.02.2013 00:00, schrieb Barrie Treloar: You could always pony up some of your own money for a server or try finding a free hosting service and install the MRM there. You could even leave your home computer on all the time and let your other resources connect to the MRM you install there. M

Re: MRM inside Eclipse

2013-02-07 Thread Joachim Durchholz
Am 06.02.2013 23:43, schrieb Adrien Rivard: On Wed, Feb 6, 2013 at 9:55 PM, Joachim Durchholz wrote: Now I'm wondering where m2e is putting things if I run a Maven launch with an "install" target. It's definitely not going to ~/.m2/repository. It may depends on your settings.xml used by ecli

Re: MRM inside Eclipse

2013-02-07 Thread Joachim Durchholz
Am 07.02.2013 08:27, schrieb Baptiste MATHUS: Try running help:effective-settings from eclipse and read the value of localRepository tag. Nothing unexpected here it seems (this was with a freshly emptied .m2, not sure whether that changes anything): http://maven.apache.org/POM/4.0.0"; xmlns:x