Re: Continuum 1.1. with LDAP/NIS

2007-08-15 Thread Emmanuel Venisse
Jesse work on ldap support in redback. When it will be ready, we'll add it in Continuum. Emmanuel Cla Emanuel Monsch a écrit : hi does anybody know if it's possible to link the continuum user management with a directory service like NIS or LDAP? if not - that would be a nice feature! ;-)

Re: [Help] Where to change a template?

2007-08-15 Thread Emmanuel Venisse
When you start continuum 1.0.3 for the first time, apps/continuum-plexus-application-1.0.3.jar is unpacked under apps/continuum If you want to reinstall continuum, you'll need to modify the view.vm in this jar but if you don't reinstall it, to prevent to replace your modifications in

Re: Continuum 1.1. with LDAP/NIS

2007-08-15 Thread Jesse McConnell
ldap support should make it into 1.1 before release I believe, I have the user manager successfully working with ldap and some limited functionality with it in place jesse On 8/15/07, Emmanuel Venisse [EMAIL PROTECTED] wrote: Jesse work on ldap support in redback. When it will be ready, we'll

Re: Maven2 / Surefire problem

2007-08-15 Thread Tim Kettler
Hi, I'm currently sticking with Surefire-Plugin 2.3 / TestNG 5.1 this combination is working for me: project [...] dependencies [...] dependency groupIdorg.testng/groupId artifactIdtestng/artifactId version5.1/version classifierjdk15/classifier

Re: Version numbering

2007-08-15 Thread Achim Abeling
Hi, I think you can just omit the version element in the child pom. Best regards Achim EJ Ciramella wrote: Is there any way for a child pom to simply inherit the version number from the parent? We have a few use cases where this would be very helpful.

Re: building and installing a source only jar

2007-08-15 Thread Tim Kettler
Hi, have a look at the maven-source-plugin[1] and possibly the maven-javadoc-plugin[2] and configure the maven-eclipse-plugin as shown here [3]. -Tim [1] http://maven.apache.org/plugins/maven-source-plugin/ [2] http://maven.apache.org/plugins/maven-javadoc-plugin/ [3]

Re: building and installing a source only jar

2007-08-15 Thread Maria Odea Ching
EJ Ciramella wrote: Is there any way to build a source only jar and install that to our internal remote repository? Try 'mvn source:jar install' for this, and.. We're trying to get more modular with our builds and would like to still allow eclipse users to hop to the source of a

javac: invalid source release: 1.4.2

2007-08-15 Thread Gisbert Amm
Hi list, when I try to compile using the following settings plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-compiler-plugin/artifactId configuration source1.4.2/source target1.4.2/target /configuration /plugin I get this error message: Failure executing javac,

RE: javac: invalid source release: 1.4.2

2007-08-15 Thread Jörg Schaible
Gisbert Amm wrote on Wednesday, August 15, 2007 10:15 AM: Hi list, when I try to compile using the following settings plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-compiler-plugin/artifactId configuration source1.4.2/source target1.4.2/target

Re: javac: invalid source release: 1.4.2

2007-08-15 Thread Tim Kettler
Hi, the source/ and target/ properties reflect the javac commandline options. See here [1] for the possible values for these options. -Tim [1] http://java.sun.com/javase/6/docs/technotes/tools/solaris/javac.html Gisbert Amm schrieb: Hi list, when I try to compile using the following

Re: javac: invalid source release: 1.4.2

2007-08-15 Thread Dirk Olmes
Hi list, when I try to compile using the following settings plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-compiler-plugin/artifactId configuration source1.4.2/source target1.4.2/target /configuration /plugin I get this error message: Failure

Dynamic class loading of artifacts during plugin execution

2007-08-15 Thread Dave Mellors
Hi all, I am developing an installer type plugin which installs and configures an application deployed to a remote repository that needs no local pom file. Depending on the local configuration, e.g. which application version, I need to resolve and download different artifacts, which I can do.

Re: Had to manually install artifact which was already in the repository

2007-08-15 Thread Maria Odea Ching
Are you certain the jar you saw in the repo when you first checked was the same jar file not being found by Maven? (e.g. same path groupId/artifactId/version and same filename)? :) -Deng Yuen-Chi Lian wrote: Hi guys, I had a strange problem yesterday, Maven was complaining about an

Associate an ID with a goal and call it independently

2007-08-15 Thread Farhan Sarwar
Hi Guys, There is something which I am trying to achieve through maven, for which I need some assistance.. Basically I would want to run some maven goal for which I have provided the configuration (e.g. the parameters it expects and other stuff) in a pom for a project. Now what I would want

RE: Tests fail (class not found) when running against non-standard local repository location

2007-08-15 Thread Vihung Marathe
I agree that the normal Maven way of doing things is to have a settings.xml per seat *(i.e. a user on a machine) that will apply to all projects. I am working on a project where, for reasons out of my control for now, we would like to have a repository per project, and hence a settings file per

RE: Tests fail (class not found) when running against non-standard local repository location

2007-08-15 Thread Vihung Marathe
Yes. This issue is not with the format of the location of the classpath at all. I have tried lots of permutations and combinations of factors in an effort to understand this bug better - paths with spaces/without spaces, paths with quotes/without quotes etc., and the ONLY factor that determines

Re: Eclipse Plugin - Attaching Sources

2007-08-15 Thread Tim Kettler
Hi, there is no source or javadoc jar provided alongsite the hibernate artifact in the repository for hibenate 3.0.5 [1]. Taking a quick look sources are available starting with hibernate-3.1. -Tim [1] http://repo1.maven.org/maven2/org/hibernate/hibernate/3.0.5/ Roberto del Fuego schrieb:

Maven Patch Day

2007-08-15 Thread Jason van Zyl
Just to make sure that users know about Maven Patch Day which will happen Tuesday August 21st: http://blogs.sonatype.com/jvanzyl/2007/08/15/1187175697501.html We're ready and prepared to take all your patches! The relevant page in the user wiki is here:

maven-clover-plugin: How to Filter logging statements

2007-08-15 Thread Gisbert Amm
In the Clover documentation at http://cenqua.com/clover/doc/adv/contexts.html is described how to filter logging statements: clover-setup ... statementContext name=log regexp=^LOG\..* statementContext name=iflog regexp=^if \(LOG\.is.* ... /clover-setup However, from

Re: maven-clover-plugin: How to Filter logging statements

2007-08-15 Thread Gisbert Amm
Just found http://jira.codehaus.org/browse/MCLOVER-54 Never mind. -Gisbert Gisbert Amm wrote: In the Clover documentation at http://cenqua.com/clover/doc/adv/contexts.html is described how to filter logging statements: clover-setup ... statementContext name=log regexp=^LOG\..*

maven-antrun-plugin

2007-08-15 Thread robert . egan
Do the if and/or unless attributes of the tasks element actually work? It seems that my ant code gets run no matter what. plugins plugin artifactIdmaven-antrun-plugin/artifactId executions execution phaseinstall/phase configuration tasks if=${XX}

[Help] Where to change a template?

2007-08-15 Thread Oscar Picasso
Hi, I badly need to solve the problem below in order to use continuum. Any idea ? Oscar -- Forwarded message -- From: Oscar Picasso [EMAIL PROTECTED] Date: Aug 13, 2007 2:53 PM Subject: Where to change a template? To: [EMAIL PROTECTED] Hi, I am trying to change the View.vm

Re: maven-antrun-plugin

2007-08-15 Thread Michael Meyer
Hi in the example[1] they use unless=maven.test.skip and not unless=${maven.test.skip}. Just a guess... Cheers, michael [1] http://maven.apache.org/plugins/maven-antrun-plugin/examples/tasksAttributes.html [EMAIL PROTECTED] wrote: Do the if and/or unless attributes of the tasks element

Re: problem with apache-4-site.xml

2007-08-15 Thread Matthias Wessendorf
re-sent b/c of DNS mail error ... On 8/15/07, Matthias Wessendorf [EMAIL PROTECTED] wrote: Hi, when running mvn site for the Apache MyFaces Trinidad project I get the above WARNINGs. They say, apache-4-site.xml is not there for a download, in the repos. That is right. The maven build,

Trying to run ant task wsgen from maven but it's failing

2007-08-15 Thread Charles Smith
I'm trying to use maven to call an ant script which contains the target wsgen by jaxws. I have the following in my pom: plugin artifactIdmaven-antrun-plugin/artifactId dependencies dependency groupIdcom.sun.xml.ws/groupId

Re: Trying to run ant task wsgen from maven but it's failing

2007-08-15 Thread Dan Tran
The main problem is http://jira.codehaus.org/browse/MEV-498 Also you should try to use jaxws-maven-plugin at java.net 'ws-common -D On 8/15/07, Charles Smith [EMAIL PROTECTED] wrote: I'm trying to use maven to call an ant script which contains the target wsgen by jaxws. I have the

Re: Associate an ID with a goal and call it independently

2007-08-15 Thread Steven Rowe
Hi Farhan, I think you can do what you want with a profile: http://maven.apache.org/guides/introduction/introduction-to-profiles.html If you put your plugin's settings in a profile, then you could then use a cmdline something like: mvn -P profile-id plugin:goal Steve Farhan Sarwar wrote:

Why does Maven2 by default generate Java 1.1 byte code?

2007-08-15 Thread Gisbert Amm
Searching for version issues, I had a closer look at the *.class files generated by Maven2 with the default compiler settings and found that the first bytes of them are cafe babe 0003 002D ..., which is byte code version 45.3 = Java 1.1. First I was believing that I had this (target 1.1)

Generating EJB home/remote interfaces with maven

2007-08-15 Thread Vaidya, Supriya A \(US - Chicago\)
Hi: Is there an equivalent to ejbGen in Maven-ejb plugins? How do I use it? If you could point me to any available documentation, that would be fine too... I tried the following: 1. In my EJB's pom.xml - I use the maven-ejb-plugin. 2. My resources directory in teh EJB project contains the

customized Site Skin/Template for use in different projects

2007-08-15 Thread fuvo
Hi, I searching for a way to make my own template/skin and use this in different projects as default skin. As I understand, I have to put my created template/skin in every project. But thats really not what I want. What I want is: my own skin jar (like

RE: building and installing a source only jar

2007-08-15 Thread EJ Ciramella
Yep, I found the source:jar plugin just moments after sending my original email. The problem I have now is when I install to our internal remote repository using the following command, I have two problems: mvn deploy:deploy-file -DgroupId=lty -DartifactId=lty-utils -Dpackaging=jar

Re: building and installing a source only jar

2007-08-15 Thread Tim Kettler
Hi, try adding the classifier property: mvn deploy:deploy-file -DgroupId=lty -DartifactId=lty-utils -Dclassifier=sources -Dpackaging=jar -Dversion=1.0-SNAPSHOT -Dfile=lty-utils-1.0-SNAPSHOT-sources.jar -DrepositoryId=central -Durl=file:\\build.corp.upromise.com\maven2 -Dgeneratepom=false -Tim

Re: Generating EJB home/remote interfaces with maven

2007-08-15 Thread Tim Kettler
Hi, the maven-ejb-plugin doesn't help you to generate your home/remote interfaces. It is just for packaging your poject to a valid ejb jar. As far as I know, there is no ejbgen-plugin for maven 2. The only one I'm aware of [1] is for maven 1. However, you should be able to use xdoclet [2]

RE: building and installing a source only jar

2007-08-15 Thread EJ Ciramella
And use the -DuniqueVersion=false - I'm all set! Thanks Tim! -Original Message- From: Tim Kettler [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 15, 2007 10:50 AM To: Maven Users List Subject: Re: building and installing a source only jar Hi, try adding the classifier property:

Re: building and installing a source only jar

2007-08-15 Thread Wendy Smoak
On 8/15/07, EJ Ciramella [EMAIL PROTECTED] wrote: Yep, I found the source:jar plugin just moments after sending my original email. The problem I have now is when I install to our internal remote repository using the following command, I have two problems: mvn deploy:deploy-file

RE: building and installing a source only jar

2007-08-15 Thread EJ Ciramella
Ok, maybe I'm wrong - what's the easiest way to install this source jar in your local repository? Say the developer doesn't have the actual source from perforce -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 15, 2007 10:56 AM To: Maven Users

Re: Why does Maven2 by default generate Java 1.1 byte code?

2007-08-15 Thread Wayne Fay
This has been discussed several times on this list. IMO, the default compilation target being 1.1 (or another hard-defined version) meets the rule of least surprise. You can argue that you don't like 1.1 and you'd prefer 1.3 or even 1.5 but that is another discussion. In contrast, the rule of

Re: embedded jetty in maven test phase classpath problem.

2007-08-15 Thread Wayne Fay
I don't use JSP declared methods with %!. Keep in mind, the jspc-maven-plugin is simply a wrapper calling out to Tomcat's Jasper compiler. So if what you're doing is not supported in Jasper, then Maven can't do much for you. But if it is supported, and you're having a problem, then you might need

Re: customized Site Skin/Template for use in different projects

2007-08-15 Thread Wayne Fay
Put the configuration in a parent and make all your projects derive from it. Your skin has to be declared *somewhere* otherwise the default is used. Wayne On 8/15/07, fuvo [EMAIL PROTECTED] wrote: Hi, I searching for a way to make my own template/skin and use this in different projects as

Remote respository

2007-08-15 Thread Mathias P.W Nilsson
How can I make my own remote respository that my team can use? I mean so that when I add a dependeny to my application the jar files are downloaded from a remote server -- View this message in context: http://www.nabble.com/Remote-respository-tf4273892s177.html#a12164430 Sent from the Maven -

RE: Generating EJB home/remote interfaces with maven

2007-08-15 Thread Vaidya, Supriya A (US - Chicago)
Thanks Tim! I modified by EJB's pom.xml to contain the following - plugin artifactIdxdoclet-maven-plugin/artifactId groupIdorg.codehaus.mojo/groupId version1.0-alpha-1/version executions execution goals goalxdoclet/goal /goals phasegenerate-sources/phase

expand war deps

2007-08-15 Thread John Coleman
Hi, I have a WAR project that depends on a JAR. Can I expand the contents of the JAR dependency into my webapps classes directory automatically with a setting, or do I have to do something more manual like setting up a dependency:unpack? Anyone got an example pls. TIA John

Re: Remote respository

2007-08-15 Thread Mathias P.W Nilsson
I think I better explain this a little better :wistle: When I have created my project with maven and I want some other programmers to be able to use my project as a dependency, how can I accomplish this? Local harddrive doesn't work. I probably need a server of some sort that is exposed to the

invalid POM, why?

2007-08-15 Thread aldana
i am having problems with following dependency: dependency groupIdcom.sun.xml.stream.buffer/groupId artifactIdstreambuffer/artifactId version0.4/version /dependency it tells me that referenced pom is invalid: project modelVersion4.0.0/modelVersion

RE: Remote respository

2007-08-15 Thread Cort, Tom
You can define a repository in the distributionManagement part of pom.xml. When you want to upload the jar file to the repository, just run mvn deploy. In the example below, maven will upload the artifacts with scp (secure copy) to /var/www/maven on gateway-demo.osuosl.org. project [...]

Re: Remote respository

2007-08-15 Thread Wayne Fay
Most people set up what is called a Corporate Repository, which is then shared by all Maven-using dev teams in the organization. Among your options for implementing something like this as Proximity, Artifactory, Archiva etc (there are more, search this list). Wayne On 8/15/07, Mathias P.W

Re: Remote respository

2007-08-15 Thread Steven Rowe
Hi Mathias, In Maven parlance, what you want is called an Internal Repository. See the Maven intro to repos for some discussion: http://maven.apache.org/guides/introduction/introduction-to-repositories.html Steve Mathias P.W Nilsson wrote: I think I better explain this a little better

Re: invalid POM, why?

2007-08-15 Thread aldana
aldana wrote: i am having problems with following dependency: dependency groupIdcom.sun.xml.stream.buffer/groupId artifactIdstreambuffer/artifactId version0.4/version /dependency it tells me that referenced pom is invalid: project

Re: Tests fail (class not found) when running against non-standard local repository location

2007-08-15 Thread Wayne Fay
I would try using the MS-DOS command subst to set up a fake M: drive or something that is actually pointing at your current project. Then tell settings.xml that your repo is at M:\repository which will actually be c:\your-projects\project1\repository. If this works, make a set.bat file to

Re: error: IO exception sun.io.MalformedInputException

2007-08-15 Thread Enrique Gaona
John, Thanks for the suggestion, very much appreciate it. I added the maven-compiler-plugin and used encoding ASCII and that solved my problem. Enrique John Casey [EMAIL PROTECTED] wrote on 08/14/2007 09:06:04 AM: Just another idea...if you're using an alternative encoding on purpose, you

Re: How to include the artfact/extraFiles/dependency in assembly (single module)

2007-08-15 Thread Bryan Noll
Zarick... Just wanted to let you know that your solution just helped me out. I would second it that it seems odd to me that extra configuration is required in order to get the jar your project is building into the assembly. Seems to me this should be the default behavior, and then the user

maven plugin for ckjm ...

2007-08-15 Thread Giovanni Azua
Hi all, Any existing plugin around ckjm? http://www.spinellis.gr/sw/ckjm/ regards, Giovanni - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: expand war deps

2007-08-15 Thread Stephane Nicoll
Hi, Yep you'll need to setup resources:unpack in the generate-resources phase. Next version of the WAR plugin has a new overlay handling but we do not consider handling jars for the moment. Regards, Stéphane On 8/15/07, John Coleman [EMAIL PROTECTED] wrote: Hi, I have a WAR project that

Re: maven plugin for ckjm ...

2007-08-15 Thread Mick Knutson
this sounds like JDepend and there is a plugin for that On 8/15/07, Giovanni Azua [EMAIL PROTECTED] wrote: Hi all, Any existing plugin around ckjm? http://www.spinellis.gr/sw/ckjm/ regards, Giovanni - To

Re: Findbugs plugin cannot find dependencies' classes

2007-08-15 Thread blalor
Matthew-M.Rose wrote: I grepped through the archives and have seen this crop up once or twice before but no resolutions were posted. Can you suggest any advice? No advice to offer, per se, but the findbugs mojo executes with the compile classpath. Anything defined with a runtime, test,

Pronuciation

2007-08-15 Thread brad hadfield
Just a trivia question... hope you don't mind settling a point of discussion. What is the proper pronuciation of the word Maven? I have been using mey-vuh n with the a as in bacon or gate. I have heard the a pronounced as in fact or back. Anyone? Thanks

weird error - anyone seen this before?

2007-08-15 Thread EJ Ciramella
If I do a mvn deploy of module A, I can watch it get uploaded to our repository and there are no errors. I can also look over the pom that gets created and etc and all looks great. When I do a mvn install of module B, which depends on version 1.0.0.11 of module A (installed in the previous

Re: Pronuciation

2007-08-15 Thread Wayne Fay
I am not an expert in this matter, but I have always pronounced it may-vin. If you check the Oxford dictionary, it seems this is the right way to pronounce this word. http://www.askoxford.com/results/?view=dictfreesearch=maven Wayne On 8/13/07, brad hadfield [EMAIL PROTECTED] wrote: Just a

Re: weird error - anyone seen this before?

2007-08-15 Thread Wayne Fay
Looks like a problem related to Findbugs. Perhaps comment out your findbugs config and see if the error goes away. Wayne On 8/15/07, EJ Ciramella [EMAIL PROTECTED] wrote: If I do a mvn deploy of module A, I can watch it get uploaded to our repository and there are no errors. I can also look

Re: customized Site Skin/Template for use in different projects

2007-08-15 Thread Dennis Lundberg
fuvo wrote: Hi, I searching for a way to make my own template/skin and use this in different projects as default skin. As I understand, I have to put my created template/skin in every project. But thats really not what I want. What I want is: my own skin jar (like

Re: Publishing to Tomcat from Eclipse, my filtered files aren't being filtered

2007-08-15 Thread Jared Blitzstein
I do have that plugin installed, anything specific I should look at? The general workflow I follow is to do my coding in eclipse, do a mvn compile in a terminal window, at that point either do mvn jetty:run if I only want to run that app or go back to eclipse, refresh that project and

Re: Publishing to Tomcat from Eclipse, my filtered files aren't being filtered

2007-08-15 Thread Adam Hardy
Jared Blitzstein on 14/08/07 19:40, wrote: I have a few configuration files that need to be filtered when run. When I run in jetty or build a war for deployment, they are filtered correctly. But when I deploy to tomcat from eclipse, they are not. Is there a way I can make sure eclipse

Re: Publishing to Tomcat from Eclipse, my filtered files aren't being filtered

2007-08-15 Thread Adam Hardy
Adam Hardy on 15/08/07 20:42, wrote: Jared Blitzstein on 14/08/07 19:40, wrote: I have a few configuration files that need to be filtered when run. When I run in jetty or build a war for deployment, they are filtered correctly. But when I deploy to tomcat from eclipse, they are not. Is there

RE: maven plugin for ckjm ...

2007-08-15 Thread Giovanni Azua
ckjm and Jdepend have overlapping only couple of same metrics e.g. AC but Jdepend misses the most important ones e.g. WMC, RFC and LCOM. -Original Message- From: Mick Knutson [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 15, 2007 8:40 PM To: Maven Users List Subject: Re: maven

Rulesets on PMD Site Report

2007-08-15 Thread Bruce Alspaugh
Is there a way to configure the PMD site report to show which rulesets were used to check your source code? Bruce - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Packaging .har files for JBoss

2007-08-15 Thread Cort, Tom
Hi, I'm converting an Ant built system to Maven for a JavaEE project[1] I'm working on, and I'm having problems building the HAR[2] (hibernate[3] archive). For those not familiar with HARs, a .har file is just a re-named .jar with some jboss specific and hibernate specific configuration files in

clover issue when executing from a high level multi modules pom.xml?

2007-08-15 Thread Baz
All, I am having issues when running clover through a high level multi module pom.xml. Here are the directory structure: products/ pom.xml /product_A/module/pom.xml /product_B/module/pom.xml Here are the symptoms: 1. products/pom.xml will run mvn clean install with

Re: maven plugin for ckjm ...

2007-08-15 Thread Wayne Fay
If you want to get ckjm functionality in Maven, I'd encourage you to look into creating the plugin yourself. Its really not that tough in general. Wayne On 8/15/07, Giovanni Azua [EMAIL PROTECTED] wrote: ckjm and Jdepend have overlapping only couple of same metrics e.g. AC but Jdepend misses

Re: clover issue when executing from a high level multi modules pom.xml?

2007-08-15 Thread Baz
It seems like the paths are set in the parent pom.xml for clover implementation: include implementation=java.lang.String build/clover/src/**/*.java/include include implementation=java.lang.String build/clover/src/something/**/*.java/include build directory is the local output directory -

Re: Packaging .har files for JBoss

2007-08-15 Thread Wayne Fay
Take a look at the jboss-packaging-maven-plugin from org.codehaus.mojo to create the .har file. Wayne On 8/15/07, Cort, Tom [EMAIL PROTECTED] wrote: Hi, I'm converting an Ant built system to Maven for a JavaEE project[1] I'm working on, and I'm having problems building the HAR[2]

Re: Outbound values from a mojo?

2007-08-15 Thread Mykel Alvis
Works swimmingly. Thanks, Wayne! On 8/13/07, Wayne Fay [EMAIL PROTECTED] wrote: Something along these lines should do it... import org.apache.maven.project.MavenProject; /** * The maven project. * * @parameter expression=${project} * @required * @readonly */

RE: Re: Version numbering

2007-08-15 Thread EJ Ciramella
But in this case, there is still a parent entry: project xmlns=http://maven.apache.org/POM/4.0.0; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd; modelVersion4.0.0/modelVersion parent

Re: Eclipse Plugin - Attaching Sources

2007-08-15 Thread Roberto del Fuego
Hi Tim, Thanks for your reply. Yes, I had a look there myself just afterwards. When the plugin says 'downloading jar' what it means I guess is that its being optimistic in assuming that the jar's there and not claiming that its found it and is actually downloading it. My misinterpretation.

Re: How to include the artfact/extraFiles/dependency in assembly (single module)

2007-08-15 Thread John Casey
BTW, this problem is fixed in the latest snapshots of the assembly plugin, where there is a new flag in the assembly descriptor's dependencySet: useProjectArtifacttrue|false/useProjectArtifact. For compatibility with the 2.1 release of maven-assembly-plugin, this flag is set to true by

Re: invalid POM, why?

2007-08-15 Thread John Casey
The problem is that this POM's dependencies do not have versions. They can inherit versions from a dependencyManagement section (in a parent POM or something), but this POM also doesn't specify a parent/ section (which would need the groupId, artifactId, and version of the parent POM).

Re: Buildnumber plugin and svn

2007-08-15 Thread DCVer
Nobody knows? ... DCVer wrote: I use the maven buildnumber plugin and it works fine on my local pc. But on the Continuum server (checked out from the same svn repository) i receive an error (in fact Continuum/Maven2 generates it): [INFO] [buildnumber:create {execution: default}]

Re: Buildnumber plugin and svn

2007-08-15 Thread ben short
I would ofr started by typing svn --version on you continuum server, to get the version. If your using a redhat box then chances are its svn version 1 or something. But it seem that somewhere between svn version 1.2 [1] and current [2] the --non-interactive flag of the info command was

Re: Pronuciation

2007-08-15 Thread Roberto del Fuego
From an English linguistics viewpoint, as a rule of thumb, whenever you have vowel-consonant-vowel (as in mAVEn), the first vowel sound is pronounced its 'long' way (a as in ape as opposed to a as in fact). So I think you are right! Roberto - Original Message - From: Wayne Fay

Re: Re: Version numbering

2007-08-15 Thread Wayne Fay
You want to omit the version tag from both the parent tag and the child pom itself? No, this is not possible. If you at least include the version in the parent tag, I believe you can omit the version in the child. If it complains, try ${parent.version} or something. Wayne On 8/15/07, EJ

Overridden properties not applied while building a war

2007-08-15 Thread Federico Schroder
Hello, So far I've been using maven 2 to build a webapp without problems, now I want to generate a new webapp that is a customization of the original. For now the only things I would like to change are a few images and some other minor stuff, this includes some of the properties defined in the

Rulesets on PMD site report

2007-08-15 Thread Bruce Alspaugh
Is there a way to configure the PMD site report to show which rulesets were used to check the source code? Bruce - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Rulesets on PMD site report

2007-08-15 Thread Wayne Fay
We got your email ~3 hrs ago. No need to send it again so quickly. If someone knows the answer, they will respond. It is also rather likely that the answer is no. Wayne On 8/15/07, Bruce Alspaugh [EMAIL PROTECTED] wrote: Is there a way to configure the PMD site report to show which rulesets

Re: building and installing a source only jar

2007-08-15 Thread Maria Odea Ching
You could do this with the install-file [1] goal of the maven install plugin :) -Deng [1] http://maven.apache.org/plugins/maven-install-plugin/install-file-mojo.html EJ Ciramella wrote: Ok, maybe I'm wrong - what's the easiest way to install this source jar in your local repository? Say

Re: maven plugin for ckjm ...

2007-08-15 Thread Wayne Fay
I got bored and wrote the plugin tonight... ;-) For now, it simply outputs a ckjm.xml file (or plain text file) in ./target. If you want to do the full run ckjm, then make a report with it and add it to the site then you will really need to handle that bit yourself. At least, if you want that