Re: [c-1.1] Anyone have Activa and CI running on the same Tomcat instance?

2007-12-15 Thread Mick Knutson
Thanks. Sorry, but I am new the the Derby DB. Are there dirctions on setting up the external DB? I.e. do I need a users DB and an application DB? And if I need 2, can the Users DB be shared between the 2? On Dec 14, 2007 6:16 PM, Wendy Smoak [EMAIL PROTECTED] wrote: On Dec 14, 2007 8:51 AM,

Re: [c-1.1] Anyone have Activa and CI running on the same Tomcat instance?

2007-12-15 Thread ossi petz
hallo i had the sam issue. i switched to an external mysql database: http://docs.codehaus.org/display/CONTINUUMUSER/Continuum+on+MySQL archiva and continuum can share the same users database! that is also my configuration. actually someone told me this is recommended :) regards ossi Mick

Re: [c-1.1] Anyone have Activa and CI running on the same Tomcat instance?

2007-12-15 Thread Wendy Smoak
On Dec 15, 2007 3:59 PM, Mick Knutson [EMAIL PROTECTED] wrote: Thanks. Sorry, but I am new the the Derby DB. Are there dirctions on setting up the external DB? I.e. do I need a users DB and an application DB? And if I need 2, can the Users DB be shared between the 2? It depends on what DBMS

Re: [M2] Reproducible build

2007-12-15 Thread Michael McCallum
The maven jar plugin puts the pom and pom properties into all jars it builds... which can be useful for comparing at a high level... we run scripts in all our environments that extracts the artifact and version names and emails us daily. Very handy to know exactly whats deployed and have it

Re: Steps involved in migrating to maven 1.1 from maven 1.0.2

2007-12-15 Thread Lukas Theussl
Maven 1.1 is mostly backwards compatible with 1.0.2, the few issues to consider are listed here: http://maven.apache.org/maven-1.x/reference/backwards-compatibility.html If you encounter any problems not mentioned there, please let us know! Cheers, -Lukas ganji wrote: Hi all, We have a

Re: Multi module best practice and folder layout.

2007-12-15 Thread nicolas de loof
Maven2 both support the notion of parent and modules. in many case the same POM can be used as parent AND as multi-module, but this is not required. To avoid confusion, you can name your super project arte-project so that is does not use the parent-child vocabulary and only serve as

Surefire doesnt run my tests anymore

2007-12-15 Thread Guillaume Lederrey
Hello ! I had my tests running correctly until this morning. Now the Surefire pluin tells me There are no tests to run. I checked the docs which tell me that it should run the tests following the pattern *Test.java, which my tests follow. If I run mvn -Dtest=AbstractHibernateDaoTest test (which

two compiles from the same source

2007-12-15 Thread deckrider+mvn
I have a requirement to build two different jars (one for java 1.4 and one for java 1.5) from the same source. Is this the best way to make such a project or are there better aproaches? Layout: foo-parent/pom.xml foo-parent/foo14 foo-parent/foo14/pom.xml foo-parent/foo15

Using componentDescriptors with a multi-module assembly

2007-12-15 Thread Westfall, Eric Curtis
Hello, I'm attempting to figure out how to use a componentDescriptors element with one of my assemblies for a multi-module project and I'm having some trouble. My original assembly looked like: assembly idstandalone/id formats formatwar/format /formats

using release plugin with a profile and distributionManagement section

2007-12-15 Thread James Levinson
I have been able to use profiles with the standard mvn deploy, but when I try to run mvn release:perform (after prepare) I get the error below. My distributionManagement is inside my profile in my pom, but the plugin can't seem to find it. Perhaps, I am not understanding the plugin properly. Does

Re: using release plugin with a profile and distributionManagement section

2007-12-15 Thread Wendy Smoak
On Dec 13, 2007 11:23 PM, James Levinson [EMAIL PROTECTED] wrote: I have been able to use profiles with the standard mvn deploy, but when I try to run mvn release:perform (after prepare) I get the error below. My distributionManagement is inside my profile in my pom, but the plugin can't seem

Deploying timestamped snapshots with altDeploymentRepository?

2007-12-15 Thread Wendy Smoak
Is it possible to get _timestamped_ snapshots deployed to an alternate repository? The following command deploys non-unique versions (just myjar-1.0-SNAPSHOT.jar, not timestamped,) to the alternate repo: $ mvn deploy -DaltDeploymentRepository=mine::default::file:///tmp/myrepo -- Wendy

Re: Using componentDescriptors with a multi-module assembly

2007-12-15 Thread John Casey
What version of the assembly plugin are you using? This may be a bug, if you're using the 2.2-beta-2 snapshot. -john On Dec 14, 2007, at 10:47 AM, Westfall, Eric Curtis wrote: Right, I tried the following: assembly idstandalone/id formats formatwar/format /formats

dashboard - code coverage not not included with cobertura 2.2

2007-12-15 Thread Erez Nahir
Hi, After moving to cobertura 2.2, coverage report no longer presented in our dashboard. It used to work with cobertura 2.1. Has anyone else experienced this issue? Thanks, Erez.

Re: dashboard - code coverage not not included with cobertura 2.2

2007-12-15 Thread Erez Nahir
Forgot to mention that the coverage reports available on a component level reports. On Dec 15, 2007 10:06 PM, Erez Nahir [EMAIL PROTECTED] wrote: Hi, After moving to cobertura 2.2, coverage report no longer presented in our dashboard. It used to work with cobertura 2.1. Has anyone else

Re: Deploying timestamped snapshots with altDeploymentRepository?

2007-12-15 Thread davisford
Sent via BlackBerry by ATT -Original Message- From: Wendy Smoak [EMAIL PROTECTED] Date: Sat, 15 Dec 2007 09:12:03 To:Maven Users List users@maven.apache.org Subject: Deploying timestamped snapshots with altDeploymentRepository? Is it possible to get _timestamped_ snapshots deployed

Not run maven-antrun-plugin task with file present?

2007-12-15 Thread Steinar Bang
Platform: Ubuntu 7.10, Intel Pentium M, maven 2.0.4 How does one avoid doing a maven-antrun-task when a file is present? Here's what I do: - Unzip a zip file with dependency:unpack - Add a couple of jars into the unpacked zip file with dependency:copy - Modify the config in two XML files in

Re: Not run maven-antrun-plugin task with file present?

2007-12-15 Thread Wendy Smoak
On Dec 15, 2007 2:19 PM, Steinar Bang [EMAIL PROTECTED] wrote: Platform: Ubuntu 7.10, Intel Pentium M, maven 2.0.4 How does one avoid doing a maven-antrun-task when a file is present? Try wrapping the execution in a profile, and activating that profile on the presence of the file. But