RE: configure ArrayList in POM

2006-04-04 Thread Mike Perham
private List links; http://... http://... -Original Message- From: gdub [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 04, 2006 12:57 PM To: Maven Users List Subject: configure ArrayList in POM When a plugin lists a configuration property of type ArrayList, how are values express

RE: configure ArrayList in POM

2006-04-04 Thread Mike Perham
il 04, 2006 2:06 PM To: Maven Users List Subject: Re: configure ArrayList in POM Mike Perham wrote: > > http://... > http://... > Thanks, Mike. Is configuration syntax like that specifically written into each each plug-in? Or does Maven somehow automatically discern that &quo

RE: PMD reports

2006-04-05 Thread Mike Perham
It certainly does use it if you are using 2.0-beta-1 or later. The rulesets are packaged in pmd-3.x.jar, not the plugin. -Original Message- From: Wayne Fay [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 05, 2006 10:36 AM To: Maven Users List Subject: Re: PMD reports 1. Remove the whol

RE: PMD reports

2006-04-05 Thread Mike Perham
It's in svn and will be coming soon in the 2.0 release. Brett called a vote about 5 days ago to release it. -Original Message- From: Rik Bosman [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 05, 2006 1:38 PM To: Maven Users List Subject: Re: PMD reports Is support for PMD 3.6 already

RE: m2.0.3 - aggregated reports at top-level...

2006-04-10 Thread Mike Perham
Jules, I had it working last week. Something changed when I tried to reproduce it from scratch this morning and now I can't get it working. -Original Message- From: Jules Gosnell [mailto:[EMAIL PROTECTED] Sent: Monday, April 10, 2006 2:03 PM To: Maven Users List Subject: m2.0.3 - aggreg

RE: PMD, CPD, cobertura, jdepend, etc. etc. on my project site

2006-04-11 Thread Mike Perham
That's what the POM element is for. All reports in are run when site:site is run. Our build is just "mvn clean install site:site site:deploy" and includes 5-6 different report plugins (javadoc, pmd, cpd, jxr, project-info, etc) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMA

best practices for setting up a stable build process?

2006-04-11 Thread Mike Perham
I'm attempting to create the build process for our next release. We have an m2 build repository for the current release which we built by hand (i.e. downloaded every file by hand from central and examined it to ensure consistency). I'm trying to do something a little more realistic this time - I'

RE: best practices for setting up a stable build process?

2006-04-11 Thread Mike Perham
To: Maven Users List Subject: Re: best practices for setting up a stable build process? Mike Perham wrote: > I have all the distributionManagement and repository settings in the > POM pointing to the master. The clean plugin is there in the master > repo but I assume there is somethin

RE: How to make sure all System.out and System.err are printed when using maven?

2006-04-13 Thread Mike Perham
Example configuration in M2: maven-surefire-plugin 2.1.3 **/*TestSuite* false -Original Message- From: Ken Weiner [mailto:[EMAIL PROTECTED] Sent: Thursday, April 13, 2006 1:14 PM To: Maven Users List S

RE: derby-maven-plugin

2006-04-17 Thread Mike Perham
We use the create=true flag in Spring jdbc datasource definition along with a bootstrapping spring bean to load initial data. org.apache.derby.jdbc.EmbeddedDriver jdbc:derby:target/test/testdb/${pom.artifactId};create =true The artifactId is requi

RE: Maven and WSAD or RAD

2006-04-18 Thread Mike Perham
Please check the archives. This has been discussed ad infinitum. -Original Message- From: Aaron Freeman [mailto:[EMAIL PROTECTED] Sent: Monday, April 17, 2006 10:54 PM To: Maven Subject: Maven and WSAD or RAD Is anyone using Maven with either WebSphere Studio Applicaiton Developer or R

RE: Jira Changes plugin

2006-04-18 Thread Mike Perham
The JIRA changes report does not work with JIRA 3.x. Try downloading by hand the URL it prints out below. JIRA is returning an HTML error page instead of the expected XML content. -Original Message- From: javed mandary [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 18, 2006 4:50 AM To:

RE: exluding jars from war Class-Path in MANIFEST.MF

2006-04-19 Thread Mike Perham
provided -Original Message- From: Janos Mucsi [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 19, 2006 6:48 PM To: Maven Users List Subject: exluding jars from war Class-Path in MANIFEST.MF Hi I have the following settings: j2ee j2ee 1.4 compile jar

RE: maven2 jira report - maven-changes-report ?

2006-04-19 Thread Mike Perham
Any references to it are premature. The JIRA report simply does not work in its current state. The changes.xml report, OTOH, is useful. -Original Message- From: Jules Gosnell [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 19, 2006 5:11 PM To: Maven Users List Subject: maven2 jira repo

RE: [m2] WAR plugin does not generate MANIFEST.MF

2006-04-20 Thread Mike Perham
We do this to generate a MANIFEST.MF for RAD/RSA when the WAR is built. Your version will vary. org.apache.maven.plugins maven-war-plugin 2.0-beta-3-20051216.015813-3 WebContent WEB-INF/lib/*.jar

RE: WAR plugin does not generate MANIFEST.MF

2006-04-20 Thread Mike Perham
lugin true ${basedir}/WebContent ${basedir}/WebContent/WEB-INF/web.xml **/*.jar Which solution is better? --- Mike Perham <[EMAIL PROTECTED]> wrote: > We do this to generate a MANIFEST.MF for RAD/RSA w

RE: Removing version when creating a jar

2006-04-24 Thread Mike Perham
Usually because you have something like a reference by name in something like EAR's application.xml and don't want to update that file every time the version changes. Having changes ripple to modules downstream is a nightmare to deal with and so referring without version solves that problem. I ag

RE: Conditional dependencies in M2

2006-04-24 Thread Mike Perham
test is the closest thing I can think of. Test dependencies are not transitive so you need to declare them in each module. -Original Message- From: Clifton Craig [mailto:[EMAIL PROTECTED] Sent: Monday, April 24, 2006 2:15 PM To: users@maven.apache.org Subject: Conditional dependencies

RE: Clover 'site' missing an test jar dependency at compile time.

2006-04-24 Thread Mike Perham
This has nothing to do with Cenqua. They write Clover, not the Clover plugin. You need to enter a bug in the MCLOVER jira project. http://jira.codehaus.org/browse/MCLOVER -Original Message- From: Wayne Fay [mailto:[EMAIL PROTECTED] Sent: Monday, April 24, 2006 2:50 PM To: Maven User

RE: [m2.0.4] PMD enum and JDK 1.5

2006-04-24 Thread Mike Perham
http://maven.apache.org/plugins/maven-pmd-plugin/pmd-mojo.html Look carefully. -Original Message- From: Tiago Fernandez [mailto:[EMAIL PROTECTED] Sent: Monday, April 24, 2006 6:13 PM To: Maven Users Group Subject: [m2.0.4] PMD enum and JDK 1.5 Hello, It seems PMD 3.4 Maven Plug-in is i

RE: [m2.0.4] PMD enum and JDK 1.5

2006-04-24 Thread Mike Perham
.java:253) ... 21 more Tiago On 4/24/06, Mike Perham <[EMAIL PROTECTED]> wrote: > > http://maven.apache.org/plugins/maven-pmd-plugin/pmd-mojo.html > > Look carefully. > > -Original Message- > From: Tiago Fernandez [mailto:[EMAIL PROTECTED] > Sent:

RE: Repository Problem with Release Plugin

2006-04-25 Thread Mike Perham
Bob, I suggest you look through MRELEASE. There's a number of issues which sound like they cover your problems. -Original Message- From: Allison, Bob [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 6:44 PM To: Maven Users List Subject: RE: Repository Problem with Release Plugin

RE: Perforce SCM support w/release plugin

2006-04-26 Thread Mike Perham
Yes, with the svn head. The latest public binary version of the release plugin was released 6 months ago before I wrote the Perforce provider. I don't understand your question. -Original Message- From: Jason Dillon [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 9:15 PM To: Mave

RE: [m2] Any plans for an update to javadoc plugin

2006-04-26 Thread Mike Perham
There's been a shedload of changes in the last week. I suspect it is been groomed for an upcoming release along with site, release, pmd, etc. -Original Message- From: Beyer,Nathan [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 26, 2006 10:12 AM To: users@maven.apache.org Subject: [m2]

RE: PMD plugin in multi-module help needed

2006-04-26 Thread Mike Perham
William, you don't say which version you are using. The SVN head of the PMD plugin appears to fix this bug (canGenerateReport() checks to ensure the source directory already exists). If you can't live without this functionality until the next release, you will need to compile a snapshot yourself.

RE: PMD plugin in multi-module help needed

2006-04-27 Thread Mike Perham
hanks, I'll try that today. On 4/26/06 3:56 PM, "Mike Perham" <[EMAIL PROTECTED]> wrote: > William, you don't say which version you are using. The SVN head of > the PMD plugin appears to fix this bug (canGenerateReport() checks to > ensure the source direc

RE: M2 still downloads plugins from repo1.maven.org even with internal plugin repository

2006-04-27 Thread Mike Perham
This is exactly what I want to do but can't figure out an easy way to do it. 1) To disable central, you need to add this to your .m2/settings.xml: central http://repohost/repodir internalrepo

RE: Maven Build Numbers

2006-04-27 Thread Mike Perham
Maven does not have build numbers. Continuum, anthill or luntbuild is what creates build numbers. Adding a custom entry to your manifest.mf is straightforward and documented in the jar plugin, I think? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday,

RE: [m2.0.x] Any way to give hints to change the order of repos for downloads per artifact?

2006-05-09 Thread Mike Perham
Reduce your dependency on SNAPSHOTs. They lead to non-deterministic builds. Use the explicit versions generated when you deploy a snapshot if you are not updating the snapshot often. Maven should only query for new SNAPSHOTs once per day AFAIK. -Original Message- From: Alex Karasulu [ma

RE: maven-clover-plugin 2.1 site:site troubles

2006-05-11 Thread Mike Perham
Have you added clover to the section? is not relevant during site:site. -Original Message- From: Ryan C. Payne [mailto:[EMAIL PROTECTED] Sent: Thursday, May 11, 2006 12:21 PM To: users@maven.apache.org Subject: maven-clover-plugin 2.1 site:site troubles I have spent all morning today

RE: [m2.0.4] OutOfMemoryError

2006-05-11 Thread Mike Perham
You need to understand something about the JVM memory system. Below you've configured the heap to be 1GB. Class data (.class) is stored in the permanant generation space which is different from the heap and defaults to 32MB in client and 64MB in server mode. So you can give your JUnit tests 1TB

RE: [m2.0.4] OutOfMemoryError

2006-05-11 Thread Mike Perham
s mean that my OOM is the heap space which I have set as -Xmx1024m. -dh -Original Message- From: Mike Perham [mailto:[EMAIL PROTECTED] Sent: Thursday, May 11, 2006 5:16 PM To: Maven Users List Subject: RE: [m2.0.4] OutOfMemoryError You need to understand something about the JVM mem

RE: [m2.0.4] OutOfMemoryError

2006-05-11 Thread Mike Perham
Very likely within the next week. svn.apache.org has been down for 2 days now and is blocking Brett and team from the last bit of polishing. -Original Message- From: Dave Hoffer [mailto:[EMAIL PROTECTED] Sent: Thursday, May 11, 2006 4:48 PM To: Maven Users List Subject: RE: [m2.0.4] OutO

RE: Why does Maven 2 keep trying to download stuff that i put in my local repository

2006-05-12 Thread Mike Perham
Is the pom in your repo or just the jar? -Original Message- From: Stefan Arentz [mailto:[EMAIL PROTECTED] Sent: Friday, May 12, 2006 11:29 AM To: Maven Users List Subject: Why does Maven 2 keep trying to download stuff that i put in my local repository This question will probably have a

RE: codehaus down?

2006-05-17 Thread Mike Perham
http://www.codehaus.org/status.html -Original Message- From: Brian Bonner [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 16, 2006 1:46 PM To: Maven Users List Subject: Re: codehaus down? I saw this yesterday and today as well. I pinged one of the guys on the XFire team. No word yet. On

Coolest maven feature?

2006-05-18 Thread Mike Perham
What's your current favorite maven feature? The release plugin's new dryRun feature found several problems in my modules and allowed me to correct them without mucking with our SCM. mvn release:prepare -DdryRun=true Thanks to whoever wrote this feature! -

site and inherited menus

2006-05-19 Thread Mike Perham
I have a menu in my top-most project which I don't want to be inherited by child projects. parent/ support/ storage/ security/ etc... Parent is the top-most module and just contains administrivia and the standard build and report configuration used by all the other modules in the other subsystems

RE: JavaNCSS Plugin for Maven2.0

2006-05-19 Thread Mike Perham
I'm going to do my best to get javancss out of the mojo sandbox and into mojo proper and then issue a first 2.0-alpha-1 release. I've got an aggregated javancss report working locally but everything is on hold until codehaus is back up. mike -Original Message- From: Wayne Fay [mailto:[EM

RE: Surefire: More details on failed tests--How?

2006-05-21 Thread Mike Perham
false -Original Message- From: Andreas Guther [mailto:[EMAIL PROTECTED] Sent: Sunday, May 21, 2006 8:47 PM To: Maven Users List Subject: Surefire: More details on failed tests--How? Is there a way to get more information from surefire about test failures than just the statistics without

RE: Plugin versions and JDK

2006-05-22 Thread Mike Perham
Mike, can you please point us to the exact binaries that you are having problems with? -Original Message- From: Fisher, Michael (IT) [mailto:[EMAIL PROTECTED] Sent: Monday, May 22, 2006 11:23 AM To: 'Maven Users List' Subject: Plugin versions and JDK Hello, Quick question regarding JDK

RE: Plugin versions and JDK

2006-05-22 Thread Mike Perham
316) -----Original Message- From: Mike Perham [mailto:[EMAIL PROTECTED] Sent: Monday, May 22, 2006 12:35 PM To: Maven Users List Subject: RE: Plugin versions and JDK Mike, can you please point us to the exact binaries that you are having problems with? -Original Message- From: Fish

RE: [M2] Can´t find web.xml

2006-05-22 Thread Mike Perham
Your warSourceDirectory should be "WebRoot", not "${basedir}\src". Directories should be specified with forward slashes and there is no need to prefix them with basedir. The plugin should handle relative paths for you. -Original Message- From: Leo L [mailto:[EMAIL PROTECTED] Sent: Mon

RE: [m2] [maven-release-plugin] Unknown file status: 'X' as a result of 'mvn release:prepare'

2006-05-23 Thread Mike Perham
Yes, you need to enter a JIRA bug in the Maven SCM project with this detail. -Original Message- From: Dario Luis Coneglian Oliveros [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 23, 2006 2:53 PM To: Maven Users List Subject: [m2] [maven-release-plugin] Unknown file status: 'X' as a result

RE: how can I make a profile active when a property is NOT set?

2006-05-23 Thread Mike Perham
We have the same thing. It's a frilly-decorated toilet plunger. Within about a month our build failures dropped 90%. Ain't accountability great? -Original Message- From: John Casey [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 23, 2006 4:19 PM To: Maven Users List Subject: Re: how can

RE: [m2] XDoclet generated resources problem

2006-05-26 Thread Mike Perham
Are the hbm.xmls being copied to target/classes or target/test-classes? We generate our hbm.xmls to ${project.build.outputDirectory} and it works fine. The duplicate destdir attribute is required to work around an Xdoclet bug in multimodule builds. -Original Message- From

RE: Internal plugin repository - how to populate?

2006-05-29 Thread Mike Perham
I built our shared repo based on my local repo. You just need to rename the maven-metadata-central.xml files to maven-metadata.xml I think. The command 'wget -nd -r -l 1 ' is also very handy to scrape a directory from central. We will probably use maven-proxy next time. -Original Message---

releasing modules with SNAPSHOT build plugins

2006-05-30 Thread Mike Perham
I have a SNAPSHOT of the war plugin that I built and deployed to fix a blocker for us that has not been released. In my POM, I refer to it like this: maven-war-plugin 2.0.1-20060525.222101-1 I did this specifically so the release plugin would not think it

RE: Maven 2 and RAD 6

2006-05-31 Thread Mike Perham
You're on the right track here. 1. http://jira.codehaus.org/browse/MWAR-39 Fixed but not released yet. You can use the older version of the WAR plugin but that version does not contain the war:manifest goal which will autogenerate WebContent/META-INF/MANIFEST.MF for you. 2. I don't know of an ea

site child module listing

2006-05-31 Thread Mike Perham
I have the following in my site.xml: When the site is generated, I see the parent and I see the reports but I do not see the child modules list. The associated POM does have a list and each entry in that module list has the associated POM as its parent. So what do I

RE: site child module listing

2006-05-31 Thread Mike Perham
site descriptor but just inherits it from the root? -Original Message- From: Kenney Westerhof [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 31, 2006 12:08 PM To: Maven Users List Subject: Re: site child module listing On Wed, 31 May 2006, Mike Perham wrote: you're not running 'mvn

RE: tag while using Perforce fails if label already exists

2006-05-31 Thread Mike Perham
Nope. Feel free to enter a JIRA issue. I hit that bug myself yesterday. In the meantime, 'p4 label -d foo' will workaround the problem. -Original Message- From: Smythe, Steve [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 31, 2006 1:31 PM To: 'continuum-users@maven.apache.org' Cc: Smyt

RE: Installing & running Maven 2.0.4

2006-05-31 Thread Mike Perham
[WARNING] repository metadata for: 'org.apache.maven.plugins' could not be retrieved from repository: central due to an error: Error transferring file Sounds like a transient network problem. Try again. -Original Message- From: Vikramm [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 31,

RE: [m2] NPE with maven-pmd-plugin

2006-06-01 Thread Mike Perham
This is a PMD bug and has nothing to do with Maven. You can turn off the "UselessOverridingMethod" rule (see PMD docs) or turn off the entire PMD report for your particular module like this: maven-pmd-plugin

forking surefire VM

2006-06-01 Thread Mike Perham
We are using JAVA_HOME to point to the VM to use to invoke Maven. This is fully supported by mvn and mvn.bat. But surefire appears to fork the VM that is in your PATH. So we are seeing instances where one type of VM is used to start Maven but another is used to run the tests. Shouldn't the defau

RE: forking surefire VM

2006-06-01 Thread Mike Perham
Yahoo: ruelloehr Skype: ruelloehr AOL: dokoruel -Original Message- From: Mike Perham [mailto:[EMAIL PROTECTED] Sent: Thursday, June 01, 2006 1:28 PM To: Maven Users List Subject: forking surefire VM We are using JAVA_HOME to point to the VM to use to invoke Maven. This is fully supported b

RE: forking surefire VM

2006-06-01 Thread Mike Perham
is as well. There is an option for setting which vm to use, I had to use it work around the problem. Maybe you could open a jira issue for it. > > Ruel Loehr > JBoss QA > > - > 512-342-7840 ext 2011 > Yahoo: ruelloehr > Skype: ruelloehr > AOL: d

RE: MANIFEST.MF generation outside of jar:jar plugin

2006-06-02 Thread Mike Perham
war:manifest will generate a standalone MANIFEST.MF in /META-INF. Despite the war association it does not require a war project; you can use it anywhere (for ejb/mdb projects for instance). Example: maven-war-plugin WebContent

RE: [Release plugin] Dependency versions not updated in rewrite-for-development phase

2006-06-05 Thread Mike Perham
This has been a point of debate. On one hand, it makes releasing a set of modules together easier. On the other hand, it forces a new version on your module even though you have no reason to require the new version yet. -Original Message- From: LECAN Damien [mailto:[EMAIL PROTECTED] Sen

RE: Perforce and Client Specs

2006-06-05 Thread Mike Perham
-Dmaven.scm.perforce.clientspec.name= This property will override the Perforce SCM driver's generated clientspec name. -Original Message- From: Bob Arnott [mailto:[EMAIL PROTECTED] Sent: Monday, June 05, 2006 12:07 PM To: continuum-users@maven.apache.org Subject: Perforce and Client Spec

RE: [M2] can we use 'mvn assembly' instead assembly:assembly

2006-06-05 Thread Mike Perham
You would use 'mvn package' and bind the assembly:assembly mojo to the 'package' build lifecycle phase in your pom. I could swear I've seen an example on the list before but I don't have an convienent example. -Original Message- From: hamdard [mailto:[EMAIL PROTECTED] Sent: Monday, June

RE: [M2] can we use 'mvn assembly' instead assembly:assembly

2006-06-05 Thread Mike Perham
t. -Original Message- From: Mike Perham [mailto:[EMAIL PROTECTED] Sent: Monday, June 05, 2006 3:45 PM To: Maven Users List Subject: RE: [M2] can we use 'mvn assembly' instead assembly:assembly You would use 'mvn package' and bind the assembly:assembly mojo to the &#

RE: Perforce and Client Specs

2006-06-06 Thread Mike Perham
I don't use Continuum so I can't answer this. -Original Message- From: Bob Arnott [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 06, 2006 4:10 AM To: continuum-users@maven.apache.org Subject: Re: Perforce and Client Specs Mike Perham wrote: > -Dmaven.scm.perforce.cl

RE: Maven2 SCM plugin

2006-06-06 Thread Mike Perham
What about it? It should be the exact same command. -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 06, 2006 8:16 AM To: Maven Users List Subject: RE: Maven2 SCM plugin How about perforce? -Original Message- From: dan tran [mailto:[EMAIL PR

RE: [m2] war plugin - need dependencies referenced in manifest but not in WEB-INF/lib

2006-06-07 Thread Mike Perham
We use an exclude rule for WEB-INF/lib/*.jar and a custom version of the war plugin with MWAR-39 fixed. -Original Message- From: Arthur Crawford [mailto:art&[EMAIL PROTECTED] Sent: Wednesday, June 07, 2006 3:02 AM To: users@maven.apache.org Subject: [m2] war plugin - need dependencies re

RE: [m2] Where to put log4j.properties file

2006-06-07 Thread Mike Perham
Containers usually have their own logging configuration. WebSphere has a config page in their admin console. Jboss has a log4j.xml configuration file. Check the docs. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of ben short Sent: Wednesday, June 07, 2

RE: [m2] war plugin - need dependencies referenced in manifest but not i

2006-06-07 Thread Mike Perham
ng for the next release. Regards, Arthur. Mike Perham wrote: > > We use an exclude rule for WEB-INF/lib/*.jar and a custom version of > the war plugin with MWAR-39 fixed. > > -Original Message- > From: Arthur Crawford [mailto:art&[EMAIL PROTECTED] > Sent: Wedn

multi-module build overriding dependency versions

2006-06-08 Thread Mike Perham
I have a set of modules: root/ a/ b/ Both modules are at version 1.1.2-SNAPSHOT and B depends on version 1.1.1 of A. When I run the root build, it builds A and B and version 1.1.2-SNAPSHOT of A is forced upon B. This is a massive problem for us as it means we can't do independent developm

RE: multi-module build overriding dependency versions

2006-06-08 Thread Mike Perham
pect everything beneath to build. -Original Message- From: Henry S. Isidro [mailto:[EMAIL PROTECTED] Sent: Thursday, June 08, 2006 7:18 PM To: Maven Users List Subject: Re: multi-module build overriding dependency versions On Friday, June 9, 2006 07:36, Mike Perham wrote: > I hav

RE: RE : multi-module build overriding dependency versions

2006-06-09 Thread Mike Perham
Maven Users List' Subject: RE : multi-module build overriding dependency versions Hi, Mike, it's certainly the main reason why (IMHO) http://jira.codehaus.org/browse/MRELEASE-91 can be considered as a bug ;-) WDYT ? -- Olivier -Message d'origine----- De : Mike Perham [mai

RE: RE : multi-module build overriding dependency versions

2006-06-09 Thread Mike Perham
FYI the issue is MNG-1245 and I have developed a patch for it if anyone else if having this problem. -Original Message- From: Mike Perham [mailto:[EMAIL PROTECTED] Sent: Friday, June 09, 2006 8:42 AM To: Maven Users List Subject: RE: RE : multi-module build overriding dependency

RE: Seam with Maven2 WAS: + JBoss Embedded EJB3 and Surefire Plugin Maven 2 PROBLEM+

2006-06-12 Thread Mike Perham
Any jar can be uploaded to ibiblio, you just need to create an upload bundle for it and enter a MAVENUPLOAD issue. http://maven.apache.org/guides/mini/guide-ibiblio-upload.html http://jira.codehaus.org/browse/MAVENUPLOAD > -Original Message- > From: Steve Lewis [mailto:[EMAIL PROTECTED]

RE: javancss-maven-plugin-2.0-beta-1 released?

2006-06-13 Thread Mike Perham
It's been voted on but I was waiting for Jean-Laurent to get committer privileges so he could do the release. I'll let him comment on his expected timeframe for the release. > -Original Message- > From: Stefan Hübner [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 13, 2006 10:31 AM > T

RE: integration builds and version numbers

2006-06-14 Thread Mike Perham
The perforce provider does not handle passwords; it is assumed that you are already logged in. We have a special build user who is only allowed to log in from the build server and whose login never expires. > -Original Message- > From: EJ Ciramella [mailto:[EMAIL PROTECTED] > Sent: Wedne

RE: integration builds and version numbers

2006-06-14 Thread Mike Perham
en using the perforce scm config, > will pull the users password from an environment variable? > > Mike, did you try that before you left this person logged in? > > -Original Message- > From: Mike Perham [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 14, 2006 12:

RE: integration builds and version numbers

2006-06-14 Thread Mike Perham
mella <[EMAIL PROTECTED]> wrote: > > Does anyone know if mvn, when using the perforce scm > config, will pull > > the users password from an environment variable? > > > > Mike, did you try that before you left this person logged in? > > > > -Origi

RE: integration builds and version numbers

2006-06-14 Thread Mike Perham
as, where is this scm setup supposed to > be, the parent level or child level? > > -Original Message- > From: Mike Perham [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 14, 2006 4:31 PM > To: Maven Users List > Subject: RE: integration builds and version numbers

RE: integration builds and version numbers

2006-06-14 Thread Mike Perham
> -Original Message- > > In this case, we have something like this: > > //depot/up-svcs-test/rel/R1.0/pom.xml <--- parent > //depot/up-svcs-test/rel/R1.0/A/pom.xml > //depot/up-svcs-test/rel/R1.0/B/pom.xml <--- children > //depot/up-svcs-test/rel/R1.0/C/pom.xml > > Without putting

RE: antrun classpaths

2006-06-14 Thread Mike Perham
Have you tried looking for open or recently closed bugs in JIRA? > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Lee Meador > Sent: Wednesday, June 14, 2006 5:27 PM > To: Maven Users List > Subject: Re: antrun classpaths > > Does anyone have any i

RE: common jars between modules in EAR

2006-06-15 Thread Mike Perham
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Thursday, June 15, 2006 7:44 AM > To: users@maven.apache.org > Subject: common jars between modules in EAR > > I declared in ear's pom: > * the webModule simple_war and > * the javaModule common_jar > They ar

RE: common jars between modules in EAR

2006-06-15 Thread Mike Perham
But the jar library > is included > into the war file... > > I tried also: "*.jar" > > What is wrong ? > Andre > > > -Original Message- > > From: Mike Perham [mailto:[EMAIL PROTECTED] > > > > > -Original Message- >

RE: IBM WAS 6 M2 plugin

2006-06-16 Thread Mike Perham
We use Websphere Rapid Deploy. Just copy the generated EAR to the Websphere Rapid Deploy directory. Works on both development machines and automated test machines. > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Friday, June 16, 2006 4:05 AM > To: users@

RE: IBM WAS 6 M2 plugin

2006-06-16 Thread Mike Perham
6 9:07 AM > To: users@maven.apache.org > Subject: RE: IBM WAS 6 M2 plugin > > Thanks Mike. How do you get around bindingfile generation ? Do you > generate at deploy time automatically (wsi files, etc) ? > > > > -Original Message- > From: Mike Perham [mailt

RE: calling ant build.xml directly

2006-06-16 Thread Mike Perham
See the maven-antrun-plugin docs. > -Original Message- > From: cristal [mailto:[EMAIL PROTECTED] > Sent: Friday, June 16, 2006 12:35 PM > To: users@maven.apache.org > Subject: calling ant build.xml directly > > > Hi guys, this might be a stupid question, but... > > Can I simply call an

RE: Adding hibernate generated resources to JAR?

2006-06-20 Thread Mike Perham
We just output to target/classes: org.codehaus.mojo xdoclet-maven-plugin test-compile xdoclet

dependency version ranges

2006-06-21 Thread Mike Perham
Does Maven support dependency version ranging? I don't want to use the traditional "closest version declaration wins" but want to use version requirement ranges so I can say this: A: foo [2.3.1,) B: foo [2.3.3,) And guarantee that 2.3.3 will always be picked because it is the only version t

Tool to create maven-metadata.xml?

2006-06-22 Thread Mike Perham
I'm trying to use version ranges in my POMs as described in chapter 3.6 of BBWM. No versions are present in the repository for the artifact with a range [3.1.3,3.2) org.hibernate:hibernate:jar:null I built my repository by hand and it does not contain many of the maven-metadata.xml files which

RE: [m2] maven-jar-plugin-2.1 status?

2006-06-23 Thread Mike Perham
Mark, I can't confirm an exact date but I just went through JIRA last night and closed/resolved 10-15 of the existing issues. The one thing that has not been done yet is an overhaul of the documentation to conform with the new doc standards. Once this has been done, the release should be reasonab

RE: Re: [ANN] Maven2 javancss plugin 2.0-beta-1

2006-06-23 Thread Mike Perham
Geoffrey, read this: http://mojo.codehaus.org/javancss-maven-plugin/howto.html > -Original Message- > From: news [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey De Smet > Sent: Friday, June 23, 2006 8:32 AM > To: users@maven.apache.org > Subject: Re: [ANN] Maven2 javancss plugin 2.0-beta-

RE: Clover and Maven 2

2006-06-23 Thread Mike Perham
Andrew, FWIW, we've given up using Clover in an automated fashion for now. It conflicts with too many other plugins in unexpected ways. We just run 'mvn clover:instrument clover:clover' during development to determine coverage needs. > -Original Message- > From: [EMAIL PROTECTED] [mailt

RE: Deleting additional directories during clean

2006-06-23 Thread Mike Perham
The current clean plugin in SVN has a filesets configuration element - "The list of filesets to delete, in addition to the default directories" but there's no documentation on how to use it. http://jira.codehaus.org/browse/MCLEAN-12 > -Original Message- > From: dan tran [mailto:[EMAIL PRO

RE: Deleting additional directories during clean

2006-06-23 Thread Mike Perham
Thanks John. I just added site documentation based on this example. > -Original Message- > From: John Casey [mailto:[EMAIL PROTECTED] > Sent: Friday, June 23, 2006 11:51 AM > To: Maven Users List > Subject: Re: Deleting additional directories during clean > > This is not to short circu

RE: M2: Using version ranges in dependencies

2006-06-23 Thread Mike Perham
Yep, I just ran into this also. I have a module which has [1.1.0,) and 1.1.0 and 1.1.1-SNAPSHOT in my local repo. I can't release the module. It basically makes dependency ranges unusable for us. I'm unclear who's at fault here (the release plugin, maven's dependency resolution alogrithm, etc) b

RE: M2: Using version ranges in dependencies

2006-06-27 Thread Mike Perham
Akbarr, you might want to watch this issue. http://jira.codehaus.org/browse/MRELEASE-134 -Original Message- From: Akbarr [mailto:[EMAIL PROTECTED] Sent: Thu 6/22/2006 12:22 PM To: Maven Users List Subject: M2: Using version ranges in dependencies Hi all, I have a doubt with dependenci

RE: warSourceDirectory

2006-06-27 Thread Mike Perham
If you are generating them, why are you considering them source in the first place? Why not just generate them straight into target/-? That's where everything is copied to so it can be jarred into a war. > -Original Message- > From: Alexandre Poitras [mailto:[EMAIL PROTECTED] > Sent: T

RE: Fw :[m2-beta-1] Ear plugin: root-context & copied JARs/WARs

2005-09-21 Thread Mike Perham
Where's the equivalent document for the war plugin? mike -Original Message- From: Stephane Nicoll [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 21, 2005 1:58 AM To: Maven Users List Subject: Re: Fw :[m2-beta-1] Ear plugin: root-context & copied JARs/WARs It is except that you nee

[m2] surefire output to console?

2005-09-21 Thread Mike Perham
How do I tell surefire to output to the console? I want the same behavior as the old "usefile=false" flag. mike - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: clean command

2005-09-22 Thread Mike Perham
+1 You're not the only lazy one, Eli. mike -Original Message- From: Eli Doran [mailto:[EMAIL PROTECTED] Sent: Thursday, September 22, 2005 3:35 PM To: users@maven.apache.org Subject: clean command I have been wondering for some time why it is necessary to type "m2 clean:clean" instead

RE: [m2] commons-lang and commons-codec includes junit for scope compile

2005-09-22 Thread Mike Perham
Enter a JIRA issue at http://jira.codehaus.org/browse/MEV I've found that there are a HELL of a lot of problems with POMs. Many of them are either minimal with no dependencies or contain EVERY dependency without regard to scope. Spring 1.1.5, for instance, is minimal and does not declare aopa

[m2] xdoclet hibernatedoclet

2005-09-23 Thread Mike Perham
I've cobbled together a working instance of Maven 2 running the new maven-xdoclet-plugin running Xdoclet 1.x's hibernatedoclet task to generate the Hibernate HBMs. Since there's next to no docs, here it is for anyone who needs it. Kenny, feel free to add it to your docs on neonics.com:

RE: How are SNAPSHOT dependency downloads handled?

2005-09-23 Thread Mike Perham
Jason, maven-proxy has not be actively developed for approximately 18 months now (at least JIRA has not been touched since then). There does not appear to be a way to start maven-proxy as a windows service. It has a webapp version (so you could run tomcat/jetty as a service) but it does not suppo

  1   2   3   >