how to configure continuum to trigger a build after a commit

2007-09-16 Thread Marco Mistroni
hi all, i have been running continuum since yesterday.. (i come from CControl background) somehow, i cannot trigger continuum todo a build when i do a commit in my project. only way to build projects is to force ab uild from the userinterface.. could anyone help me out? am i missing config

Re: how to configure continuum to trigger a build after a commit / ignore

2007-09-16 Thread Marco Mistroni
hello, i spoke too soon... continuum did a build hwile i was writing this email apologize for bothering regards marco On 9/16/07, Marco Mistroni [EMAIL PROTECTED] wrote: hi all, i have been running continuum since yesterday.. (i come from CControl background) somehow, i cannot

Running test cases fails

2007-09-16 Thread Suneet Shah
Hello, I am new to maven and am having a problem running the mvn install and mvn test commands. In both cases, maven invokes my Junit test cases and they call fail. However, when I run the test cases in eclipse, they run fine. Any thoughts on what the problem may be or how I can go about getting

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 a

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]

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:

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. dependency groupIdorg.apache.activemq/groupId artifactIdactivemq-core/artifactId

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

2007-09-16 Thread Vanja Petreski
Hello, I have assembly bin-release.xml: ... fileSet directorysrc/main/runscript/directory filteredtrue/filtered useStrictFilteringtrue/useStrictFiltering outputDirectorybin/outputDirectory includes include*.sh/include

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

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 of that

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: ... fileSet directorysrc/main/runscript/directory filteredtrue/filtered useStrictFilteringtrue/useStrictFiltering

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: 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 keep

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 from