Re: The packaging for this project did not assign a file to the build artifact

2007-08-29 Thread Tim Kettler
Hi, just don't use deploy:deploy on the command line. 'mvn deploy' executes the deploy phase, whereas 'mvn deploy:deploy' executes just the deploy goal of the deploy plugin. When executing the phase, all other phases before the deploy phase will execute too. This includes most importently th

Re: Skiping module during mvn eclipse:eclipse

2007-08-29 Thread Marcin Waldowski
Dan, thanks for checking my example. I'm sure that I use 2.4 version. In debug mode I can see: [INFO] Building ejb3 . [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-eclipse-plugin:2.4:eclipse' --> But now I see that the problem is not around skipping module. In debug o

Re: Specifying the jar name in profiles

2007-08-29 Thread Tim Kettler
drippy schrieb: This has all been helpful. Now I am facing yet another challenge with this setup. when I run mvn -PprofileA clean install my (service module) pom file does not generate the pom that goes into the repository. It only places the jar file into it. Yes, that's how it works. Th

Re: Help Creating My Own Maven 2 Archetype

2007-08-29 Thread Wayne Fay
Everything looks right/good to me. What exactly is wrong, from your perspective? Its not clear what you're getting vs what you expect to get. Wayne On 8/29/07, Andrew Leer <[EMAIL PROTECTED]> wrote: > See: > > http://docs.codehaus.org/download/attachments/37533/MavenArchTypes_Template_N_Result2.

Re: Help Creating My Own Maven 2 Archetype

2007-08-29 Thread Andrew Leer
See: http://docs.codehaus.org/download/attachments/37533/MavenArchTypes_Template_N_Result2.zip For full code of Archetype and resulting project from Archetype. Thank you, Andrew J. Leer Hello, I am trying to make an archtype in mvn2. My Archetype project has the following directory stru

RE: [ANN] Maven HAR & SAR Plugins & Archetypes 0.9 Released

2007-08-29 Thread Cort, Tom
> Could you add their information to this page: > http://docs.codehaus.org/display/MAVENUSER/Archetypes+List Done. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

error getting maven-ant-plugin 2.0-SNAPSHOT

2007-08-29 Thread Srinivasan Chikkala
Any help on how to get the latest maven-ant-plugin ( maven-ant-plugin-2.0-SNAPSHOT.jar) ? I am trying to use the latest maven-ant-plugin, but when I execute "mvn ant:ant" after setting the settings.xml entry repo1 http://repo1.maven.org/maven2

Re: [ANN] Maven archetype plugin 1.0-alpha-6 released

2007-08-29 Thread Carlos Sanchez
alpha 6 has been removed. If you have problems delete it from your local repo and it will pick up the previous version On 8/30/07, Carlos Sanchez <[EMAIL PROTECTED]> wrote: > probably the docs need to define the version of the plugin > > Anyway I'm going to release alpha-7 fixed > > On 8/30/07, To

The packaging for this project did not assign a file to the build artifact

2007-08-29 Thread Farrukh Najmi
Dear colleagues, I added to my project's pom.xml using scp and wagon-ssh-external. The project uses war packaging. When I run "mvn deploy" it successfully deploys my project's war file. However, when I run "mvn deploy:deploy" it gives the following: [DEBUG] Configuring mojo 'org.apache.ma

Re: cross platform pom

2007-08-29 Thread Joshua ChaitinPollak
I think what you want to do is install the dependency into your local repository on both Windows and Linux and then remove the and options from the pom.xml Something like this: http://maven.apache.org/plugins/maven-install-plugin/examples/ specific-local-repo.html Use the same group and

Re: [ANN] Maven HAR & SAR Plugins & Archetypes 0.9 Released

2007-08-29 Thread Don Brown
Could you add their information to this page: http://docs.codehaus.org/display/MAVENUSER/Archetypes+List Thanks, Don On 8/30/07, Cort, Tom <[EMAIL PROTECTED]> wrote: > The Vermont Department of Taxes is pleased to announce the initial release > of maven-har-plugin, maven-sar-plugin, maven-archet

cross platform pom

2007-08-29 Thread Andy Dingfelder
I have a pom that works on windows, but does not work if I use it on Linux because the paths are different, such as: com.toedter jcalendar 1.2.2 system C:/projects/java.3rdParty/jars/jcalendar-1.3.2.jar is there any way to use

Possible filter bug?

2007-08-29 Thread Nathan Maves
Not sure but I think this is a bug. I have a place holder in a spring config file named ${jdbc.url} With filtering set to true for this resource ${jdbc.url} gets replaced by the http://maven.apache.org specified in the pom file. Anyone else ever seen this or is this the intended use of filteri

Re: [ANN] Maven archetype plugin 1.0-alpha-6 released

2007-08-29 Thread Carlos Sanchez
probably the docs need to define the version of the plugin Anyway I'm going to release alpha-7 fixed On 8/30/07, Tommy Knowlton <[EMAIL PROTECTED]> wrote: > Here's a (not-so-funny?) anecdote... > > I have been using Maven in the shop that pays my salary, for better > than 8 months now. > Just tod

Re: [ANN] Maven archetype plugin 1.0-alpha-6 released

2007-08-29 Thread Tommy Knowlton
Here's a (not-so-funny?) anecdote... I have been using Maven in the shop that pays my salary, for better than 8 months now. Just today, my friend who works for another company close by, he asked me "have you ever used Maven?" I explained how Maven has greatly helped with my company's softwa

Re: Trouble with mojo tutorial

2007-08-29 Thread Wayne Fay
Try mvn -U ... to force an update. 1.0-alpha-5 was a "failed release". The only available versions are -4 and -6. Wayne On 8/29/07, siegfried <[EMAIL PROTECTED]> wrote: > I'm trying to follow the instructions at > http://maven.apache.org/guides/plugin/guide-java-plugin-development.html. > Below

Re: [ANN] Maven archetype plugin 1.0-alpha-6 released

2007-08-29 Thread Wayne Fay
Carlos, we've got a bad pom: http://repo1.maven.org/maven2/org/apache/maven/archetype/maven-archetype/1.0-alpha-6/maven-archetype-1.0-alpha-6.pom Its pointing to 1.0-alpha-5 for model, core, creator which of course does not exist. Also the metadata in core, model, creator all have 1.0-alpha-5 in

Help Creating My Own Maven 2 Archetype

2007-08-29 Thread Andrew Leer
Hello, I am trying to make an archtype in mvn2. My Archetype project has the following directory structure: Java6ArchetypeProjectRoot | Java6ArchetypeProject.txt | pom.xml | pom.xml~ | +---src | \---main | \---resources | +---archetype-resources | | | pom.x

Trouble with mojo tutorial

2007-08-29 Thread siegfried
I'm trying to follow the instructions at http://maven.apache.org/guides/plugin/guide-java-plugin-development.html. Below are the results. Am I experiencing some problem with the public maven repositories or is this a bug in maven 2.0.7? (Or did I do something wrong?) What would be the wget

Re: Question on maven-buildnumber-plugin

2007-08-29 Thread Kalle Korhonen
I owe you one, Julian! The only thing wrong in Dennis' suggestion is that it's exactly what I wanted to avoid - and what others probably would like to avoid as well. Not that writing/compiling plugin is that much work, but there's overhead in maintaining, deploying and versioning anything you have

[ANN] Maven HAR & SAR Plugins & Archetypes 0.9 Released

2007-08-29 Thread Cort, Tom
The Vermont Department of Taxes is pleased to announce the initial release of maven-har-plugin, maven-sar-plugin, maven-archetype-har, and maven-archetype-sar. maven-har-plugin - http://maven-har.sf.net/ This plugin generates Hibernate Archive (HAR) files. maven-sar-plugin - http://maven-sar.sf.n

true ignored with build from parent

2007-08-29 Thread Shea, Amy
I'm hoping someone has seen this before. My war has a dependency on an ejb-client jar, and I want the ejb-client placed inside the ear not the war. I am using the true tag on the dependency in the war so that the manifest gets updated to have the reference to the ejb-client jar, but that the ejb-

Re: Question on maven-buildnumber-plugin

2007-08-29 Thread Julian Wood
Seems reasonable. Look for it in 0.9.6. J On 28-Aug-07, at 3:00 PM, Kalle Korhonen wrote: I've been amazed myself by the fact that the plugin (nor any other one) doesn't just provide a straight-up timestamp. buildnumber plugin comes the closest, but if you want to use both svn version numbe

[ANN] Maven archetype plugin 1.0-alpha-6 released

2007-08-29 Thread Carlos Sanchez
The maven team is pleased to announce the maven archetype plugin 1.0-alpha-6 release. This release substitutes the failed 1.0-alpha-5 release too. Issues fixed ARCHETYPE-78 Dependencies listed as version ${project.version} in maven-archetype prevent the use of archetypes ARCHETYPE-60Arc

Re: Assembling sources

2007-08-29 Thread Mick Knutson
Maybe you can use: org.apache.maven.plugins maven-dependency-plugin copy compile

Re: classifier for maven deploy plugin

2007-08-29 Thread Dan Tran
one quick dirty one, is to attach the same war with a classifier, but you will have same main and classifier artifacts. -D On 8/29/07, John Coleman <[EMAIL PROTECTED]> wrote: > Perhaps I need to explain the issue further. > > While our WARs contain common core code packages, each one is flavoure

Re: Specifying the jar name in profiles

2007-08-29 Thread drippy
This has all been helpful. Now I am facing yet another challenge with this setup. when I run mvn -PprofileA clean install my (service module) pom file does not generate the pom that goes into the repository. It only places the jar file into it. This way when I am attempting to access the jar

Re: Using Maven for EJB Deployment with RAD

2007-08-29 Thread Giancarlo Degani
Hi, you can set that properties in the build section of your pom: ../src ../test See http://maven.apache.org/general.html#dir-struct Greetings Giancarlo 2007/8/29, Hemant Ved <[EMAIL PROTECTED]>: > Hi > > Maven expects the Source code in src/main/java , however RAD expects a

Assembling sources

2007-08-29 Thread Siegmann Daniel, NY
I want to use the assembly plugin to assemble multiple source jars into one. Is it possible to include a source jar in a dependencySet? I want to create a combined jar for our projects, but there is little point to that if I cannot create a combined source jar as well. :-( -- Daniel Siegmann FJA-

Re: buildNumber plugin error

2007-08-29 Thread Wayne Fay
You could certainly request this as a new feature in the plugin. Post a RFE in Jira for MOJO project, and hopefully the plugin author will see it and decide to add your feature (or not) if he thinks it makes sense. Wayne On 8/29/07, DCVer <[EMAIL PROTECTED]> wrote: > > Thanks, thats why it really

Re: maven plugin for ckjm ...

2007-08-29 Thread Wayne Fay
I didn't actually get around to finishing the website (yet). I am well aware of the fact that there are missing pages. ;-) But thanks. I will see what I can do about it soon/shortly. Also, you should know that there is no reporting output as yet from the plugin -- only the standard xml or text out

RE: Maven repository

2007-08-29 Thread De Vleeschauwer Nele
Hi, I used the Maven Proxy to built my central repository and it works perfectly. Thanks for your help everyone ! Kind regards, Nele. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stuart McCulloch Sent: woensdag 29 augustus 2007 11:54 To: Maven User

Re: Skiping module during mvn eclipse:eclipse

2007-08-29 Thread Dan Tran
Marcin, I am not able to reproduce your issue at my side using your example. the only thing i can think of is you are using the wrong eclipse plugin version prior to 2.4. you may want to define eclipse plugin at the top level pom with version configured. and you still need to configure skip indiv

Using Maven for EJB Deployment with RAD

2007-08-29 Thread Hemant Ved
Hi Maven expects the Source code in src/main/java , however RAD expects all the ejb java files to be present in ejbModule. Can I change the directory structure in Maven from src/main/java to ejbModule? If yes, can anyone guide me on how can i do that? Thanks and Regards Hemant Ved

Re: wagon

2007-08-29 Thread Maria Odea Ching
Hi, The best documentation I could suggest is probably the sources itself :) You could checkout the codes here: http://svn.apache.org/repos/asf/maven/wagon/trunk Try looking at the test cases to see how it works.. HTH, Deng John Coleman wrote: Hi, Has anyone found some decent user doc

Maven Release Manager

2007-08-29 Thread Libor Kramoliš
Hello. I would like to create custom Release Manager to use with maven-release-plugin. Could you point me to any documentation how to do it? Has anybody already tried it? Thanks a lot, Libor - To unsubscribe, e-mail: [EMAIL PROT

Re: Maven repository

2007-08-29 Thread Stuart McCulloch
and if you aren't able to use a maven proxy (although this is the preferred approach!) then you could try the following scripts to quickly convert your local repository into a remote one, or as close to it as it needs to be... http://wiki.ops4j.org/confluence/x/CIAO I used these in the past to

wagon

2007-08-29 Thread John Coleman
Hi, Has anyone found some decent user documentation for Wagon pls? Regards, John Eurobase International Limited and its subsidiaries (Eurobase) are unable to exercise control over the content of information in E-Mails. Any views and opinions expressed may be personal to the sender a

Re: buildNumber plugin error

2007-08-29 Thread DCVer
Thanks, thats why it really failed in our project too. Because of some problems with this plugin (e.g. build process fails if there is no .svn directory = if someone exports the project) can maven be so configured, that it wouldn't fail if the revision number will be null? It would just save this

Echoing execution phase with a Mojo

2007-08-29 Thread Raúl Arabaolaza Barquín
Hi: I´m developing a pluging to echoe it´s execution phase to console, in the Wiki FAQ this is one unanswered question so i tried it out by myself. I believed that by using the MojoDescriptor i could get it (javadocs are not too complet) but i´m having a NullPointerException when trying to re

Re: buildNumber plugin error

2007-08-29 Thread nicolas de loof
I have the same issue as I'm french and my svn installation is localized by default, so the svn info command returns : "Révision : xxx" This makes the plugin fail. I've allready reported this issue to the plugin author and he planned to fix this in next release. Nico. 2007/8/29, cNT <[EMAIL PRO

Re: buildNumber plugin error

2007-08-29 Thread cNT
The same thing just happened today with my project. None of the plugins were updated, svn also functions properly. No idea what has changed :/ DCVer wrote: > > I added the maven buildnumber plugin to a project and it worked quite > fine. But 2 developers say, that they receive such an error, wh

Re: Maven repository

2007-08-29 Thread Wim Deblauwe
http://proximity.abstracthorizon.org/ is another you can use. or http://maven.apache.org/archiva/ , but I think proximity is more mature. regards, Wim 2007/8/29, Jo Vandermeeren <[EMAIL PROTECTED]>: > > Nele, > > Why don't you use a maven proxy to setup your company's central > repository? > Hav

Re: Maven repository

2007-08-29 Thread Jo Vandermeeren
Nele, Why don't you use a maven proxy to setup your company's central repository? Have a look at http://maven-proxy.codehaus.org/ It is rather easy to set up. The idea is to proxy central and/or other repositories, and cache the requested artifacts centrally.. Cheers Jo On 8/29/07, De Vleeschau

RE: classifier for maven deploy plugin

2007-08-29 Thread John Coleman
Perhaps I need to explain the issue further. While our WARs contain common core code packages, each one is flavoured per client (typically providing custom images) and differing suits of JSPs. We are not interested in the install task as these WARs will never be shared off a repository. However,

Re: maven plugin for ckjm ...

2007-08-29 Thread Rémy Sanlaville
Thanks a lot, Wayne ! I haven't try it yet but for information the ckjm-maven-plugin web site has some trouble, cf. : - http://mojo.codehaus.org/ckjm-maven-plugin/examples/simple.html - http://mojo.codehaus.org/ckjm-maven-plugin/usage.html - http://mojo.codehaus.org/ckjm-maven-plugin/faq.html

RE: Maven repository

2007-08-29 Thread De Vleeschauwer Nele
Hi Wim, I just copied the repository from my laptop (that has a connection to the internet) to our company's repository server. I think this is not the correct way to do it, but I can't find any documentation on how I should set up a 'company central repository'. So any suggestions would be welcom

Re: Maven repository

2007-08-29 Thread Wim Deblauwe
How did you set up the internal repository? Did you copy a local repository to some server and made it available through http, or are you using one of the proxy tools like proximity or archiva? regards, Wim 2007/8/29, De Vleeschauwer Nele <[EMAIL PROTECTED]>: > > Hi, > > Thanks for the tip, but

RE: Maven repository

2007-08-29 Thread De Vleeschauwer Nele
Hi, Thanks for the tip, but it doesn't quite do the trick... I've added the following to my settings.xml: central central Maven Central Proxy Repository http://b2btst04/maven-central-proxy When I execute a maven command, our company's central repo is accessed (ins