Re: release plugin : artifact not generated

2007-09-16 Thread Arnaud HERITIER
Hi Céline, Which version of the release plugin (and mvn) are you using ? In theory release:perform should generate and deploy the artifact in your remote repository. Can you send us the logs of the release:perform task please? Arnaud On 16/09/2007, Céline LEVASSEUR <[EMAIL PROTECTED]> wro

Re: Access own POM property from mojo?

2007-09-16 Thread Wayne Fay
You should generally be able to get that kind of property from MavenProject.getProperties(). Wayne On 9/16/07, Manos Batsis <[EMAIL PROTECTED]> wrote: > > Sorry if this sounds too basic: Suppose I use something like the > maven-properties-plugin in my plugin pom, how can I access this property >

Re: Eclipse and Maven "best practice"

2007-09-16 Thread Thierry Lach
There can be problems caused with a single build destination caused by the Eclipse incremental compiler that would sometimes require doing a clean in both maven and eclipse. On 9/14/07, Jim Sellers <[EMAIL PROTECTED]> wrote: > > I've used separate locations for a few reasons: > 1) in web apps to k

release plugin : artifact not generated

2007-09-16 Thread Céline LEVASSEUR
Hi, I have a pb with mvn release:prepare +mvn release:perform .. the SCM tag is created, pom are modified, but artifact is not generated. scenario : my pom is in version "0.1-SNAPSHOT" if I run "mvn deploy", artifact in version "0.1-SNAPSHOT" is generated mvn release:prepare ask for release

Re: How to access ${project.build.finalName} from assembly?

2007-09-16 Thread Michael McCallum
http://www.gnu.org/software/bash/manual/bash.html On Monday 17 September 2007 05:15, Vanja Petreski wrote: > Hello, > > I have assembly bin-release.xml: > > ... > > > src/main/runscript > true > true > bin > >*.sh >*.bat >

Re: How do I specify a particular SNAPSHOT build?

2007-09-16 Thread Kalle Korhonen
Specify that 4.2-incubator-20070121.082022-35 as version. Kalle On 9/16/07, Teody Cue Jr. <[EMAIL PROTECTED]> wrote: > > Hi Dave, > > I don't think Maven is design so that projects can depend on a > particular snapshot. Depending on a snapshot means that you're depending > on the latest version o

Re: How do I specify a particular SNAPSHOT build?

2007-09-16 Thread Teody Cue Jr.
Hi Dave, I don't think Maven is design so that projects can depend on a particular snapshot. Depending on a snapshot means that you're depending on the latest version of that snapshot. So when you execute a build, Maven will always check for the latest copy of that snapshot. If you'd want to

How to access ${project.build.finalName} from assembly?

2007-09-16 Thread Vanja Petreski
Hello, I have assembly bin-release.xml: ... src/main/runscript true true bin *.sh *.bat 0544 ... My run.sh look like this: #!/bin/sh java -jar ${project.build.finalName}.jar When I fire mvn clean package

How do I specify a particular SNAPSHOT build?

2007-09-16 Thread Dave Syer
Assuming a project is publishing nightly snapshots with timestamps, how to I specify that I depend on a particular version? E.g. org.apache.activemq activemq-core 4.2-incubator-SNAPSHOT works for me (modulo the fact that

Re: [m2] multi-module centralized filter.properties

2007-09-16 Thread Mick Knutson
Ping. I still have this issue, and do not know where to begin to try to resolve this... Someone Please help On 9/14/07, Mick Knutson <[EMAIL PROTECTED]> wrote: > > DEBUG] commons-cli:commons-cli:jar:1.0:runtime (selected for runtime) > [DEBUG] Retrieving parent-POM: > org.apache.maven.wag

Access own POM property from mojo?

2007-09-16 Thread Manos Batsis
Sorry if this sounds too basic: Suppose I use something like the maven-properties-plugin in my plugin pom, how can I access this property from within my mojo? Many thanks, Manos - To unsubscribe, e-mail: [EMAIL PROTECTED] F

Re: Running test cases fails

2007-09-16 Thread Chuck Canning
You need to go to the $project/target/sure-fire?? directories to seee the results from the tests. You probably have something included in your eclipse project that is not in your pom that is required. On 9/15/07, Suneet Shah <[EMAIL PROTECTED]> wrote: > > Hello, > > I am new to maven and am having