[m2] XmlProperty support in maven

2006-04-11 Thread Aymeric Alibert
Ant provides a nice way to load properties from an Xml document: the XmlProperty task. Does maven support that type of property loading? Thanks, Aymeric - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Continuum hangs when building a Maven project that spawns a process

2006-04-11 Thread John Didion
We have a project that spawns a process (via Runtime.exec) that is intended to live beyond the duration of the build. When Continuum builds this project, the status is always "in progress". The problem seems to be that the stream pumper that redirects the output from maven hangs on in.readLine

Re: Question about release plugin on pom archtype

2006-04-11 Thread dan tran
please post both logs for beta3 and beta4-snapshot On 4/11/06, dan tran <[EMAIL PROTECTED]> wrote: > > JIRA is needed, please post a complete log with -X turn on. > > -D > > > On 4/11/06, Todd Nine <[EMAIL PROTECTED]> wrote: > > > > I tried the latest snapshot 2.0-beta-4-snapshot(built from svn)

Re: Question about release plugin on pom archtype

2006-04-11 Thread dan tran
JIRA is needed, please post a complete log with -X turn on. -D On 4/11/06, Todd Nine <[EMAIL PROTECTED]> wrote: > > I tried the latest snapshot 2.0-beta-4-snapshot(built from svn) as your > recommended, but I had the same issue, so I rolled back to 2.0-beta3 since > it was released. > > Todd > >

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

2006-04-11 Thread Wayne Fay
Good stuff, definitely keep the user list informed as this develops... I think this is something that will interest a lot of people with all the recent discussions of repos, proxy, mirrors, etc. Wayne On 4/11/06, Mike Perham <[EMAIL PROTECTED]> wrote: > Cool, thanks Jason. Send a note out when y

Re: Custom Manifest file

2006-04-11 Thread Wayne Fay
Give this a try... org.apache.maven.plugins maven-jar-plugin src/main/resources/META-INF/MANIFEST.MF Wayne On 4/11/06, Karthik Manimaran <[EMAIL PROTECTED]> wrote: > Hi, > > How can I include a custom manifest file for a jar file and a WAR file? > > Thanks and r

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

2006-04-11 Thread Mike Perham
Cool, thanks Jason. Send a note out when you have this complete and I will test it out for you by replaying the steps I did this afternoon and see if it leads to a usable master repo. -Original Message- From: Jason van Zyl [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 11, 2006 6:51 PM T

Re: Question about release plugin on pom archtype

2006-04-11 Thread Todd Nine
I tried the latest snapshot 2.0-beta-4-snapshot(built from svn) as your recommended, but I had the same issue, so I rolled back to 2.0-beta3 since it was released. Todd On 4/11/06, dan tran <[EMAIL PROTECTED]> wrote: > > we have not had a new beta for release plugin for a long time, perhaps a > t

Custom Manifest file

2006-04-11 Thread Karthik Manimaran
Hi, How can I include a custom manifest file for a jar file and a WAR file? Thanks and regards, Karthik.

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

2006-04-11 Thread Jason van Zyl
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 something missing in the metadata? And is there any better or more mechanical way of doing what I am trying to

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: Question about release plugin on pom archtype

2006-04-11 Thread dan tran
we have not had a new beta for release plugin for a long time, perhaps a the snapshot would solve this issue? -D On 4/11/06, Todd Nine <[EMAIL PROTECTED]> wrote: > > This definitely seems like a bug, I'm glad someone else has seen this > behavior, now we can compare the system configuration of t

Re: Question about release plugin on pom archtype

2006-04-11 Thread Todd Nine
This definitely seems like a bug, I'm glad someone else has seen this behavior, now we can compare the system configuration of two independent users. Here is my configuration, can you please let me know your configuration so we can determine the common problem and report a bug? OS: Windows 2k Jav

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

2006-04-11 Thread Wayne Fay
Here's my repos and plugin repos: dotsrc http://mirrors.dotsrc.org/maven2/ ibiblio http://www.ibiblio.org/maven2 ibiblio-legacy http://www.ibiblio.org/maven legacy false true

Re: Internal (intranet) repositories

2006-04-11 Thread Wayne Fay
Only thing I can think is the following... Unless you "lock down" versions in your pom with [1.2.3] style versions for dependencies, Maven likes to run out to Central to pull down the latest code for all dependencies (both declared outright and transitive)... So it always wants to check Central to

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

2006-04-11 Thread justin_fung
Wayne, Thanks, this was what I was looking for... Just wondering where I can pick up findbugs, javancss and taglist plugins.. I didn't see it on the mojo svn repository. Thanks, -j --- Justin Fung [EMAIL PROTECTED] Sr. Analyst, Business Systems

Re: Specifying the location of web.xml in the POM

2006-04-11 Thread Wayne Fay
Give this a try: org.apache.maven.plugins maven-war-plugin ${basedir}/src/webapp/web.xml Wayne On 4/11/06, Gareth Western <[EMAIL PROTECTED]> wrote: > Hi, > > I'm playing around with an old project in Maven, trying to see how to > upgra

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

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

2006-04-11 Thread Wayne Fay
Simply add all the plugins to your section of your pom ie: org.apache.maven.plugins maven-project-info-reports-plugin org.apache.maven.plugins maven-javadoc-plugin org.codehaus.mojo jxr-maven-plugin

Specifying the location of web.xml in the POM

2006-04-11 Thread Gareth Western
Hi, I'm playing around with an old project in Maven, trying to see how to upgrade our current build scripts. Unfortunately we do not use the recommended directory structures, therefore I've specified an alternate sourceDirectory (src) and outputDirectory (classes) in the project's POM. This partic

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

2006-04-11 Thread justin_fung
I'd love to automatically have all this stuff show up on my project site. Currently I do the following: mvn site:site mvn pmd:pmd -Dformat=html mvn pmd:cpd -Dformat=html mvn cobertura:cobertura -Dformat=html mvn jdepend:generate mvn site:deploy I know I'm nitpicking, but is there some way to put

RE: Internal (intranet) repositories

2006-04-11 Thread EJ Ciramella
So honestly - why does maven go to the remote server for the pom but then takes everything else from the specified "local" repository? -Original Message- From: Wayne Fay [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 11, 2006 4:29 PM To: Maven Users List Subject: Re: Internal (intranet)

Re: Internal (intranet) repositories

2006-04-11 Thread Wayne Fay
Sounds like a good candidate for a UPromise-specific Maven2 installer made through something like InstallAnywhere Now or IzPack (http://www.izforge.com/izpack/). Just include the settings.xml file in the install bundle. And then for more fun, block repo1.maven.org in your corporate firewall, to k

Re: [Maven 2] Newbie question

2006-04-11 Thread Wayne Fay
Yes, this is exactly correct. There's no need to use a download plugin in advance of compiling etc your project. Schalk, just add the dependency to your pom and it will automatically be downloaded and used at the appropriate time by Maven2. Wayne On 4/11/06, mjohnsonaz74 <[EMAIL PROTECTED]> wrot

Re: [Maven 2] Newbie question

2006-04-11 Thread mjohnsonaz74
I'm not familiar with the Maven 1 commands as I use Maven 2 by itself, but perhaps I could ask what you're trying to accomplish? It looks like you have a dependency that you'd like to use, but if you specify that dependency in the POM.xml file it should download it for you automatically. I don't

Re: Internal (intranet) repositories

2006-04-11 Thread Konstantin Polyzois
I have succesfully done something along the way you are doing it but my 'local' repository is a maven proxy. It worked best if I gave my repository the same id as central. That is rename your local to central. And I am sure it works for me because we have no direct access to internet. Good luck /

Re: [Maven 2] Newbie question

2006-04-11 Thread Schalk
Thanks Wayne! So how would I go about accomplishing this with M2? Wayne Fay wrote: "maven" is the old Maven1 command."mvn" is the new Maven2 command. The command "plugin:download" is only used by Maven1. It seems you are trying to use a M1 command in M2. Wayne On 4/11/06, Schalk <[EMAIL PROTECTE

inheritancve of SCM tag is working for 1 level only

2006-04-11 Thread Vijay Shanker
Dear Maven Users, My current build has 80 projects of types simple jar, ejb types, war types and mdb types. Current hierarchy of POMs is used as follows: rootproject: :pom.xml :commonpom.xml :ejbpom.xml ---> uses commonpom.xml as parent POM :warpom.xm

Re: m2 site and skins info sought

2006-04-11 Thread Mikael Andersson
Hi all, when deploying with the file:// protocol it works now, but when deploying with scp it seems to work but no files are copied? These are the scp deploy log messages: [INFO] [site:deploy] scp:fifi.ebi.ac.uk:/homes/mikael/public_html/docs/ - Session: Opened Executing command: mkdir -p uk//homes

Re: [Maven 2] Newbie question

2006-04-11 Thread Wayne Fay
"maven" is the old Maven1 command. "mvn" is the new Maven2 command. The command "plugin:download" is only used by Maven1. It seems you are trying to use a M1 command in M2. Wayne On 4/11/06, Schalk <[EMAIL PROTECTED]> wrote: > Greetings All, > > When I run the following command on Windows XP: >

Re: [M2] Weblogic War install question

2006-04-11 Thread Konstantin Polyzois
If you just comment out the maven install part? Never seen that before... /Konstantin On 4/11/06, Wayne Fay <[EMAIL PROTECTED]> wrote: > > Sounds like a problem with the Weblogic plugin. You need to talk to > more people who are using this plugin and confirm that it works for > them before assumi

Re: [M2] Weblogic War install question

2006-04-11 Thread mjohnsonaz74
I'll post a question on the MOJO plugin website and if I get a resolution from them I'll post it here. --MJ -- View this message in context: http://www.nabble.com/-M2-Weblogic-War-install-question-t1433279.html#a3869349 Sent from the Maven - Users forum at Nabble.com. -

Re: How to add dependency for jars

2006-04-11 Thread John Casey
if you have module interdependencies, you need to run your build at least to the 'package' phase, so maven can resolve those interdependent artifacts. Otherwise, the build will depend on artifacts from previous builds which were installed in the local repository. -j On 4/11/06, [EMAIL PROTECTED]

[Maven 2] Newbie question

2006-04-11 Thread Schalk
Greetings All, When I run the following command on Windows XP: maven plugin:download -DgroupId=emma -DartifactId=maven-emma-plugin -Dversion=0.5 I get a error message that the command maven was not found. When I then change it to: mvn plugin:download

Re: Maven site javadoc problem

2006-04-11 Thread Wayne Fay
Yes, I believe this is the only approach that works today... However, this topic was just discussed yesterday in a thread named "m2.0.3 - aggregated reports at top-level..." so you should check it out for more info. You are looking for an aggregated Javadoc. I believe the next version of the Java

How to add dependency for jars

2006-04-11 Thread MTedesco
I have a number of project pom.xml files for a number of modules I am building eventaully culminating in an ear. How do I include a dependency from a previously built jar in a different module? Is it recommended that I install it into my local repository first? Otherwise as long as I specify the

Re: [M2] Weblogic War install question

2006-04-11 Thread Wayne Fay
Sounds like a problem with the Weblogic plugin. You need to talk to more people who are using this plugin and confirm that it works for them before assuming you will need to manually copy it etc. It might simply be a bug in the Weblogic plugin, and its not attaching the war coming out of appc back

Re: Maven site javadoc problem

2006-04-11 Thread Jules Gosnell
Bratek, http://wadi.codehaus.org http://svn.wadi.codehaus.org/viewrep/wadi/trunk/wadi have a look at what we have done... our site is generated by ./modules/site/pom.xml. modules do the into an - the modules/site/target/... dir Modules are linked to from the top-level by an index provided

Re: [M2] Weblogic War install question

2006-04-11 Thread mjohnsonaz74
Wayne Fay wrote: > > OK... For some reason the first time I read that, I think I saw "want > to install WAR into Weblogic" not "into local repo", so that was a > mistake on my part. > > I assume, if you comment out the Weblogic plugin bits, that your WAR > gets installed properly? > > Wayne >

RE: Internal (intranet) repositories

2006-04-11 Thread EJ Ciramella
Yeah, I'm NOT using the proxy atm - I still don't see benefit. And for maven to flip flop and no one has an explanation, that's just nuts. I can SEE the version on MY webserver it's looking for, yet it disregards that version and goes to: Downloading: http://repo1.maven.org/maven2/org/apache/ma

Re: help whit site-deploy

2006-04-11 Thread Chucho
Thanks John. I would evaluate and use kenney and yours advice to make it work. Also i would fill the JIRA issue, to get that feature in a new release. Thanks Again. On 4/11/06, John Casey <[EMAIL PROTECTED]> wrote: > > If you're saying that a previous build (something living in /target of > you

RE: Internal (intranet) repositories

2006-04-11 Thread EJ Ciramella
I won't work out the settings.xml file - this change must apply to all. Mgmt has asked specifically to disallow maven to down load automatically. -Original Message- From: Gareth Western [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 11, 2006 3:06 PM To: Maven Users List Subject: Re: I

Re: Internal (intranet) repositories

2006-04-11 Thread Wayne Fay
What makes you think he's using Maven Proxy? Although we've suggested this several times, I have yet to see any indication that he's tried this approach. Wayne On 4/11/06, Rollo, Dan <[EMAIL PROTECTED]> wrote: > What kind of ouput are you seeing on the Maven-Proxy console? Is the > Maven-Proxy

Re: Internal (intranet) repositories

2006-04-11 Thread Wayne Fay
I've suggested this settings.xml mirror approach multiple times, but it has not been an acceptable answer thus far. He wants to configure "everything" in the project pom.xml file, and nothing in settings.xml. I think the answer for now is... What you want to do is not currently possible. Please fe

RE: Internal (intranet) repositories

2006-04-11 Thread Rollo, Dan
What kind of ouput are you seeing on the Maven-Proxy console? Is the Maven-Proxy able to fetch this resource? Keep in mind some of the default config settings for Maven-Proxy were/are broken (the url in the example config to ibiblio was wrong for maven2 at one point.) Dan -Original Messag

Multiproject deployment

2006-04-11 Thread Michael Mosmann
How can i deploy projects in a multiprojekt build part1 (jar) part2 (jar) part3 (war, dep: part1, part2) all (module: part1,part2,part3) all mvn package result: part3/target/part3-1.0.war all mvn deploy result: part1 [ERROR] no deployment configured .. i only want to deploy pa

Re: Missing 2.0.4 release notes

2006-04-11 Thread John Casey
In the future, this page will be updated from JIRA for every release. I'm making that part of our documented release process. The whole process is available at: http://docs.codehaus.org/display/MAVEN/Maven+Release+Process Cheers, John On 4/11/06, Andreas Guther <[EMAIL PROTECTED]> wrote: > > O

Re: help whit site-deploy

2006-04-11 Thread John Casey
If you're saying that a previous build (something living in /target of your local project working directory, I mean) is being deployed rather than generating and deploying a new version, you can simply change your maven call to: mvn clean site-deploy This will clean /target before generating/depl

Re: Internal (intranet) repositories

2006-04-11 Thread Gareth Western
Hi EJ, Apologies if this has already been suggested (I've already deleted most of this thread), but have you tried adding the following to a file named " settings.xml" in your ${user.home}\.m2 directory (e.g. "C:\documents and settings\gareth\.m2\settings.xml"): my-repo Internal

Re: [M2] Weblogic War install question

2006-04-11 Thread Wayne Fay
OK... For some reason the first time I read that, I think I saw "want to install WAR into Weblogic" not "into local repo", so that was a mistake on my part. I assume, if you comment out the Weblogic plugin bits, that your WAR gets installed properly? Wayne On 4/11/06, mjohnsonaz74 <[EMAIL PROTEC

Re: [M2] Weblogic War install question

2006-04-11 Thread Lee Meador
I have an ant task (antrun plugin) attached to the package phase on my EAR and mvn install builds the ear, runs the special processing and then puts it in my local repository. I didn't have to do any configuration, as you did, on the install plugin. Otherwise my pom looks much like yours other tha

RE: Internal (intranet) repositories

2006-04-11 Thread EJ Ciramella
But it's NOT local - it's hosted on another machine. The learning curve wouldn't be so bad if there was some accurate, up-to-date documentation. So I used: local local-repository file:thirdpar

Re: Maven site javadoc problem

2006-04-11 Thread Lee Meador
I don't think it can be done automatically. You can put a site.xml file in each of the projects that has links to the other projects. I do this to put additional links in the left sidebar of the site that allows me to click around from project to project. It's just barely good enought for me. Tha

Re: Maven and CVS branches ...

2006-04-11 Thread Gareth Western
I thought it was possible in a POM (at least in Maven 2), if you just specify the branch name in the "tag" section of the "scm" node? See http://maven.apache.org/ref/2.0.3-SNAPSHOT/maven-model/maven.html#class_scm or does that only work for just CVS tags? On 4/11/06, dan tran <[EMAIL PROTECTED]>

Re: Internal (intranet) repositories

2006-04-11 Thread dan tran
artifact in local repository can not be made as remote repo. have you consider using maven-proxy? There is a some learning curve to use maven effectively, and we are willing to help. -D On 4/11/06, EJ Ciramella <[EMAIL PROTECTED]> wrote: > > So as part of a regular maven build (say I didn't wa

Re: Question about release plugin on pom archtype

2006-04-11 Thread Gelkand
Hi! I am using maven-2.0.4 (on WindowsXP, CVS on Solaris) and have exactly the same problem during release:prepare of a multiproject build. The child poms were updated and checked in, the master pom is updated (and so locally changed), but not checked in before tagging the source tree. This leads

Re: [M2] Weblogic War install question

2006-04-11 Thread mjohnsonaz74
Wayne Fay wrote: > > Just to be clear, "mvn install" simply copies your package into your > local M2 repository. > > It looks like you've attached the appc goal to the package phase. I > don't use this plugin so I don't know if this is right. > > Wayne > Yes, I want to install it into my loc

RE: Internal (intranet) repositories

2006-04-11 Thread EJ Ciramella
So as part of a regular maven build (say I didn't want to host all these files locally), all these items get down loaded to $user.dir\.m2\repository. So, I've copied the all these items to a directory served up by an apache2 instance called mavenrepository. Is there some particular directory st

Re: [m2] Weblogic J2EE Plugin

2006-04-11 Thread Konstantin Polyzois
cool glad to be of assistance. On 4/10/06, mjohnsonaz74 <[EMAIL PROTECTED]> wrote: > > > Thank you. As I suspected it was a significant, yet trivial > misunderstanding > on my part. I wasn't specifying goals inside of an execution block and > instead I was trying to stack POM's and have the plug

Re: [M2] Weblogic War install question

2006-04-11 Thread Wayne Fay
Just to be clear, "mvn install" simply copies your package into your local M2 repository. It looks like you've attached the appc goal to the package phase. I don't use this plugin so I don't know if this is right. Wayne On 4/11/06, mjohnsonaz74 <[EMAIL PROTECTED]> wrote: > > Earlier I asked abou

RE: Internal (intranet) repositories

2006-04-11 Thread EJ Ciramella
Honestly, this is really wearing on me, I can't get this to work and if this doesn't get off the ground then I guess we're reverting back to ant: E:\work\foxboro\model>mvn process-resources -P foxboro,model-base [INFO] Scanning for projects... [INFO] -

Re: Internal (intranet) repositories

2006-04-11 Thread dan tran
repository and pluginRepository are different. If you put your plugin in an internal repository, you need to define plugin repository as well. and I wish maven should not differenciate these 2 types. That is why I use maven-proxy, and configure both repository and pluginRepository to that proxy i

RE: Internal (intranet) repositories

2006-04-11 Thread Rollo, Dan
Not sure if it matters, but the name in the example I gave worries me. To be safe, try using a name that will certainly not override anything built in, like: central myInternalCentralProxy http://build.corp.upr

[M2] Weblogic War install question

2006-04-11 Thread mjohnsonaz74
Earlier I asked about using weblogic appc with Maven and I took the given example and made it work (i think). Currently when I run 'mvn install' in my war project, I see the appc portion doing it's work, but it never installs the war file into my repository. I'm not sure what I'm doing wrong. I

Re: Multimodule import with StarTeam SCM fails

2006-04-11 Thread Emmanuel Venisse
You can't add multimodule projects from your local repository because continuum can't download sub-projects. If you want to add them in continuum with file protocol, you should use parent pom from your local copy. Emmanuel Peschier J. (Jeroen) a écrit : I am experiencing problems with importi

RE: Internal (intranet) repositories

2006-04-11 Thread EJ Ciramella
[ERROR] BUILD ERROR [INFO] [INFO] The plugin 'org.apache.maven.plugins:maven-resources-plugin' does not exist or no valid version could be found Is there any expert in the realm of repositories? This is getting frustratin

Re: pom file for jaser-runtime and jasper-compiler

2006-04-11 Thread Wayne Fay
Here's my JSPC plugin configuration, and no, I don't use the javaEncoding option. org.codehaus.mojo jspc-maven-plugin ${basedir}/src/main/webapp/WEB-INF/web.xml ${project.build.directory}/jspweb.xml _pages true

RE: Internal (intranet) repositories

2006-04-11 Thread EJ Ciramella
What's the difference between (like I had defined) and pluginrepository? -Original Message- From: Rollo, Dan [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 11, 2006 12:43 PM To: EJ Ciramella; Maven Users List Subject: RE: Internal (intranet) repositories Have you tried adding "plugin

Re: Maven and CVS branches ...

2006-04-11 Thread dan tran
No possible in the pom, however you can use continuum to drive this, and therefore "no further manual interfaction is required" ;-) -D On 4/11/06, Christian Sauer <[EMAIL PROTECTED]> wrote: > > hmmm ... > > is it also possible to define this in the scm section of a pom? > so that no further ma

Re: pom file for jaser-runtime and jasper-compiler

2006-04-11 Thread Tom Joad
Thank you very much Wayne. A question about jspc plugin .Do you use javaEncoding option for plugin configuration and does it work ? I put UTF-8 , utf-8 , utf8 UTF8 , I get same results. french character like à ô are never well-displayed. Tom. 2006/4/11, Wayne Fay <[EMAIL PROTECTED]>: > This issue

RE: Maven and CVS branches ...

2006-04-11 Thread Christian Sauer
hmmm ... is it also possible to define this in the scm section of a pom? so that no further manual interaction is required? cheers, chris -Original Message- From: dan tran [mailto:[EMAIL PROTECTED] Sent: Dienstag, 11. April 2006 18:41 To: Maven Users List; [EMAIL PROTECTED] Subject: Re:

Re: pom file for jaser-runtime and jasper-compiler

2006-04-11 Thread Wayne Fay
This issue has been documented in JIRA. Grzegorz S. has even created a new Maven Upload JIRA issue: http://jira.codehaus.org/browse/MAVENUPLOAD-789 It just hasn't been dealt with as yet. Wayne On 4/11/06, Tom Joad <[EMAIL PROTECTED]> wrote: > Hi all, > Could someone upload pom file for /tomcat/j

RE: Internal (intranet) repositories

2006-04-11 Thread justin_fung
I define the following : justin-local local Justin's Local Repository file:///T:/maven/repository/ default

RE: Internal (intranet) repositories

2006-04-11 Thread Rollo, Dan
Have you tried adding "plugin repos" to your pom? Like: central local-repository default http://build.corp.upromise.com/mavenrepository ... Dan -Original Message--

Re: Maven and CVS branches ...

2006-04-11 Thread dan tran
you can checkout cvs branch using scm:checkout and pass in -Dbranch=branchName -D On 4/11/06, Christian Sauer <[EMAIL PROTECTED]> wrote: > > Hi, > > has someone experience in working with maven and CVS branches? > Is it possible at all to perform builds against branches? > > Cheers, > Chris > >

Re: Ear file and "classpath" entry in Manifest file ...

2006-04-11 Thread Wayne Fay
Try this: org.apache.maven.plugins maven-ear-plugin true Wayne On 4/11/06, Christian Sauer <[EMAIL PROTECTED]> wrote: > Hi, > > i've built an ear file and wondered why the manifest fil

Re: Ear file and "classpath" entry in Manifest file ...

2006-04-11 Thread Kenney Westerhof
On Tue, 11 Apr 2006, Christian Sauer wrote: > Hi, > > i've built an ear file and wondered why the manifest file > did not contain the "classpath" entry ... Because you don't need one. > > Does anyone know how I can get Maven to generate that entry? If you must have one, for instance to support

Maven and CVS branches ...

2006-04-11 Thread Christian Sauer
Hi, has someone experience in working with maven and CVS branches? Is it possible at all to perform builds against branches? Cheers, Chris - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROT

Re: help whit site-deploy

2006-04-11 Thread Chucho
Exactly! but how i do it? its my problem. I don't get it. I don't see that flag. I have been trying using this arguments -Dmaven.site.deploy.clean=true -Dmaven.site.publish.clean=true But it doesn't work. How to? Thanks On 4/11/06, John Casey <[EMAIL PROTECTED]> wrote: > > That would probably

Ear file and "classpath" entry in Manifest file ...

2006-04-11 Thread Christian Sauer
Hi, i've built an ear file and wondered why the manifest file did not contain the "classpath" entry ... Does anyone know how I can get Maven to generate that entry? Cheers, Chris -- Giniality AG - Christian Sauer; Steinenberg 21, CH-4051 Basel P: +41 61 226 99 66 - F: +41 61 226 99 69 - M: +41

Re: Perform build based on certain CVS tag

2006-04-11 Thread dan tran
check out scm:bootstrap scm:bootstrap -DconnectionUrl=xxx-Dtag=yyy -Dgoals=install ( i think) -D On 4/11/06, Christian Sauer <[EMAIL PROTECTED]> wrote: > > Hi, > > is it possible to let maven build against a certain > CVS tag using SCM? > > Thanks for any advice :o) > > Cheers, > Chris > > > --

Perform build based on certain CVS tag

2006-04-11 Thread Christian Sauer
Hi, is it possible to let maven build against a certain CVS tag using SCM? Thanks for any advice :o) Cheers, Chris - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Multimodule import with StarTeam SCM fails

2006-04-11 Thread dan tran
I never try to import maven2 project with multiple module using continuum's maven2 type. However I have a huge sussess import it as shell project. Also, since you already define you username and password in settings.xml and it is the correct way to do, you need to remove the username out of you

Re: help whit site-deploy

2006-04-11 Thread John Casey
That would probably work pretty well, but I was just talking about a flag you could set in the plugin config to say "it's OK to blow away that directory before deploying" or else something like a site:remote-clean that could be bound to the phase ahead of site-deploy. -j On 4/11/06, Kenney Wester

Re: Missing 2.0.4 release notes

2006-04-11 Thread John Casey
I've modified http://maven.apache.org/release-notes.html to reflect all releases. Good point Howard. Enjoy, John On 4/11/06, Arik Kfir <[EMAIL PROTECTED]> wrote: > > Hi Howard, > > The 2.0.4 is mainly a bug-fix release - see > > http://jira.codehaus.org/secure/ReleaseNote.jspa?version=12527&sty

RE: Missing 2.0.4 release notes

2006-04-11 Thread Andreas Guther
Oops, it is already there! Someone was fast! Andreas -Original Message- From: Andreas Guther Sent: Tuesday, April 11, 2006 9:22 AM To: Maven Users List Subject: RE: Missing 2.0.4 release notes Thanks for the link! I was facing the same problem last night when I visited the Maven site

last doxia siterenderer snapshot failed (NoSuchMethodError)

2006-04-11 Thread Olivier Lamy
Hi, I run mvn -U clean site site:deploy. Artifact : doxia-site-renderer-1.0-alpha-8-20060411.133534-1.jar downloaded. Stack trace says : pshots-apache [INFO] [ERROR] FATAL ERROR [INFO] -

Re: help whit site-deploy

2006-04-11 Thread Chucho
Thanks John, But the problem is that when I'm want to redeploy the site, cause has changed. I cant because the folder already exist and don't overwrite it, so I'm having an old-date site publish on my web server.. so how do i make site-deploy again to get the latest site on my web-server? automatic

RE: Missing 2.0.4 release notes

2006-04-11 Thread Andreas Guther
Thanks for the link! I was facing the same problem last night when I visited the Maven site and noticed the new release. I was hunting for the release notes as well but I gave up. I forgot about the Announcement mailing list and I will subscribe to it but I agree with Howard that it would be u

Re: m2 site and skins info sought

2006-04-11 Thread Mikael Andersson
Just deleted the site plugin in my local repository and re-downloaded it and got a different error message regarding the deploy issue I had, have to catch a bus now but will have a look later on. On 11/04/06, Mikael Andersson <[EMAIL PROTECTED]> wrote: > > Hi, > I would like to know how to get s

m2 site and skins info sought

2006-04-11 Thread Mikael Andersson
Hi, I would like to know how to get started using the updated site plug in and the skins feature, I have read a couple of posts about it but I can't get it to work properly ( can't get m2 to find the snapshot verison of the site plugin). I tried with todays SVN version of the maven-site-plugin but

Multimodule import with StarTeam SCM fails

2006-04-11 Thread Peschier J. \(Jeroen\)
I am experiencing problems with importing a multimodule POM into Continuum. Our project layout is as below: Framework + ProjectA + ProjectB Relevant parts of the framework.pom: 0.1 ProjectA ProjectB continuum http://localhost:8080/continuum mail true t

Re: help whit site-deploy

2006-04-11 Thread Kenney Westerhof
On Tue, 11 Apr 2006, John Casey wrote: Another way would be to record what files constituted the last site deployment. IIRC a 'deploy.zip' is uploaded and then unpacked. A list of files in that zip could be recorded. Your proposal for a new clean flag would then take this list into account and

Re: help whit site-deploy

2006-04-11 Thread John Casey
Are you wondering why the deployment target location isn't removed before re-deploying the site? That operates on the assumption that all the content in or under that remote location is published by the current project, or that you will be fine with redeploying all of the content when you do this s

help whit site-deploy

2006-04-11 Thread Chucho
I'm using site-deploy on maven whit continuum and its work fine, but when I'm do it again and the folder already exits, the site can be deploy, I'll use clean, but don't clean the deploy site. if a change the POM section then it would make the deploy whit out problem, but i want the deploy overwri

pom file for jaser-runtime and jasper-compiler

2006-04-11 Thread Tom Joad
Hi all, Could someone upload pom file for /tomcat/jasper-runtime/5.5.15 and tomcat/jasper-compiler/5.5.15 to central repository. Mojo plugin jspc-maven-mlugin has two artifacts as compile scope dependency and download processing , and so builld fails without pom files and sha1 or md5 files on the

Re: Missing 2.0.4 release notes

2006-04-11 Thread Arik Kfir
Hi Howard, The 2.0.4 is mainly a bug-fix release - see http://jira.codehaus.org/secure/ReleaseNote.jspa?version=12527&styleName=Html&projectId=10500&Create=Createfor a list of the bugs and issues fixed. HTH, Arik. On 4/11/06, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > > Yes, a 2.0.4 releas

Re: Missing 2.0.4 release notes

2006-04-11 Thread Howard Lewis Ship
Found it: http://mail-archives.apache.org/mod_mbox/maven-announce/200604.mbox/browser Would it be too hard to include this information on the web site as well? On 4/11/06, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > Yes, a 2.0.4 release is now available. I'm sure there's some > differences b

Re: Where can I find list of properties?

2006-04-11 Thread Arik Kfir
hi dileeph Maven makes a special object (of class "MavenProject") available in the context. When you write "${pom.name}", what happens behind the scenes is a call to "theMavenProject.getName()" - therefor all the JavaBeans-style properties of the MavenProject instance (each pom.xml creates one) ar

RE: Internal (intranet) repositories

2006-04-11 Thread EJ Ciramella
Still - I have: central local-repository default http://build.corp.upromise.com/mavenrepository lty-local

  1   2   >