RE: creating different packages for different customers

2006-10-09 Thread Jörg Schaible
Marek Chowaniok wrote on Tuesday, October 10, 2006 7:36 AM: > We have separate projects (i.e.product-web-customer, > product-web-customer1 and product-web-customer2) with just the > different files. > i.e. we have 20 jsp pages but just the 2 are defferent and > are in separate > projects. > > Ri

RE: assembly:assembly does everything twice

2006-10-09 Thread Jörg Schaible
dan tran wrote on Tuesday, October 10, 2006 4:26 AM: > correction about assembly:single ;-) dont remember what it is for > ;-) Assembly:single seems to work in multi-project build, while assembly:attach break them ... :-/ http://jira.codehaus.org/browse/MASSEMBLY-97 [snip] - Jörg -

Re: Local repository

2006-10-09 Thread dan tran
You should be able to switch local repo if you invoke another commandline via setting switch mvn -s new-settings.xml where the new -settings.xml has your new local repo definition -Dan On 10/9/06, ekio <[EMAIL PROTECTED]> wrote: I am facing a similar issue. Doing mvn install -DlocalRepo

RE: docbook plugin

2006-10-09 Thread pjungwir
Wilfred Springer-3 wrote: > > If found out about it in Mergere's Maven 2 book. > Ah, sure enough. Thanks very much! On page 258: pre-site (unbound by default) site (bound to site:site) post-site (unbound by default) site-deploy (bound to site:deploy) -- View this message in context: http:

Re: creating different packages for different customers

2006-10-09 Thread Marek Chowaniok
We have separate projects (i.e.product-web-customer, product-web-customer1 and product-web-customer2) with just the different files. i.e. we have 20 jsp pages but just the 2 are defferent and are in separate projects. Right now (not using maven in this project yet) we have to do deploy for produc

RE: docbook plugin

2006-10-09 Thread Wilfred Springer
If found out about it in Mergere's Maven 2 book. -Original Message- From: pjungwir [mailto:[EMAIL PROTECTED] Sent: Mon 10/9/2006 11:50 PM To: users@maven.apache.org Subject: Re: docbook plugin Jacek Laskowski-4 wrote: > > On 10/9/06, Andr?s <[EMAIL PROTECTED]> wrote: >> I don't know

RE: docbook plugin

2006-10-09 Thread pjungwir
Hello, Thanks for your answer. How many different lifecycles are there? The only one I've seen documented is the build lifecycle. It sounds like there is at least one more, containing the pre-site and site phases. I also see that plugins can create their own lifecycles and assign them an id: ht

RE: assembly:assembly does everything twice

2006-10-09 Thread Wilfred Springer
I can't remember all of the details, but something like this will probably solve it: maven-assembly-plugin attached package target/dep.xml So specify the

RE: docbook plugin

2006-10-09 Thread Wilfred Springer
Hi Andres, There *is* actually a pre-site phase, however it's part of a different lifecycle. If you generate a site ('mvn site'), then Maven will first execute all plugins bound to the 'pre-site' phase, and then all plugins bound to the 'site' phase, including the 'site:generate' plugin. Hop

Re: Local repository

2006-10-09 Thread ekio
I am facing a similar issue. Doing mvn install -DlocalRepository= doesn't seem to do anything either... Laura Hinojosa wrote: > > Is it possible to change the location of the local repository on the fly > (inside a Mojo? ( while maven is already executing ) > > Thanks for helping > > Laura

RE: Understanding Maven classpath

2006-10-09 Thread Manuel Ledesma
Looks like a similar problem but it's related to Eclipse's plugin, so, it's a different issue. Thanks for your quick response. -Original Message- From: Edwin Punzalan [mailto:[EMAIL PROTECTED] Sent: Monday, October 09, 2006 11:47 PM To: Maven Users List Subject: Re: Understanding Maven c

What is the difference between resources and config?

2006-10-09 Thread Manuel Ledesma
According to Betters Builds with Maven book * src/main/resource : standard location for application resources (images, etc, and properties files, which can be used for configuration too). * src/main/config : standard location for application configuration files. Src/main/config do

Re: Understanding Maven classpath

2006-10-09 Thread Edwin Punzalan
probably related to MNG-1379 ? Manuel Ledesma wrote: I'm writing a plug-in for Weblogic 9.2 and I having a hard time make it work. The issue arrives because I need to use Weblogic from the installation directory, otherwise it won't work. So I'm specifying the dependency using system scope

Understanding Maven classpath

2006-10-09 Thread Manuel Ledesma
I'm writing a plug-in for Weblogic 9.2 and I having a hard time make it work. The issue arrives because I need to use Weblogic from the installation directory, otherwise it won't work. So I'm specifying the dependency using system scope, but it does not help. Still behaving like I'm getting the

Re: assembly:assembly does everything twice

2006-10-09 Thread dan tran
correction about assembly:single ;-) dont remember what it is for ;-) On 10/9/06, dan tran <[EMAIL PROTECTED]> wrote: Must agree with the plugin's doc is very confusing assembly:assembly is meant to run on command line only. Attach to phase will cause the problem you saw. assembly:attache

Re: assembly:assembly does everything twice

2006-10-09 Thread dan tran
Must agree with the plugin's doc is very confusing assembly:assembly is meant to run on command line only. Attach to phase will cause the problem you saw. assembly:attached is meant to be configured in a phase in the pom.xml, its output also is installed/deployed assembly:single: is the same

Re: assembly:assembly does everything twice

2006-10-09 Thread pjungwir
dan tran wrote: > > instead of attaching assembly:assembly to your package phase, use > assembly:* > attached * > Ah, thank you, assembly:attached works great! So what is the difference between assembly:attached and assembly:single? I see them both listed here: http://maven.apache.org/plugins

having trouble using deploy:deploy-file to upload sources and javadoc

2006-10-09 Thread Christofer Jennings
I'm having trouble using deploy:deploy-file to upload sources and javadoc. I've set up an internal repository via SCP and have uploaded DWR version 2.0m4 to it. When I use the mvn command below for either the javadoc or sources jar, I get the NullPointerException. Am I using the command correctly

Re: Continuum abruptly stopped

2006-10-09 Thread Anoop kumar V
Alright - here is a copy paste... EHLO amp 250-amp.twoliter.com Hello localhost [127.0.0.1], pleased to meet you 250-ENHANCEDSTATUSCODES 250-PIPELINING 250-EXPN 250-VERB 250-8BITMIME 250-SIZE 250-DSN 250-ETRN 250-DELIVERBY 250 HELP DEBUG SMTP: Found extension "ENHANCEDSTATUSCODES", arg "" DEBUG S

Re: assembly:assembly does everything twice

2006-10-09 Thread dan tran
instead of attaching assembly:assembly to your package phase, use assembly:* attached * -D On 10/9/06, Eric Redmond <[EMAIL PROTECTED]> wrote: Ah, right. The assemby mojo apparently has the annotation @execute phase="package" (well, not apparently - it does - I just looked it up). This means

Re: Getting started with archiva ... still

2006-10-09 Thread Dirk Olmes
Dirk Olmes wrote: > Hi, [... first part deleted to focus on my main stumbling point ...] > Now I'm trying to start archiva as per "Getting Started" from the > generated site. I have unpacked the plexus package, started the > bin/plexus.sh and get the following error when I access the front page:

Re: assembly:assembly does everything twice

2006-10-09 Thread Eric Redmond
Ah, right. The assemby mojo apparently has the annotation @execute phase="package" (well, not apparently - it does - I just looked it up). This means that the mojo will execute up to that phase in a forked lifecycle ( http://maven.apache.org/developers/mojo-api-specification.html). When you attach

Re: Continuum abruptly stopped

2006-10-09 Thread Wayne Fay
Attachments are generally not accepted/forwarded on this list, so you'll need to send in-line. Wayne On 10/9/06, Anoop kumar V <[EMAIL PROTECTED]> wrote: On 10/9/06, Anoop kumar V <[EMAIL PROTECTED]> wrote: > Here is some more log...attached > > > > Anoop > > > On 10/9/06, Jesse McConnell < [

filtering module resources stalls and never recovers...???

2006-10-09 Thread Mick Knutson
Here is my project/project-web/npi/pom.xml 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";> 4.0.0 org.delta.npi.project-web npi-we

Re: reactor?

2006-10-09 Thread pjungwir
Ah, thank you! -- View this message in context: http://www.nabble.com/reactor--tf2413288.html#a6727316 Sent from the Maven - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additiona

Re: assembly:assembly does everything twice

2006-10-09 Thread pjungwir
Eric Redmond wrote: > > Does it run twice in a row? When you run "package", Maven will print out > all > of the goals executed, one by one. Can you list them please? > Hi, thanks for replying! Here is what I see: $ mvn clean package [INFO] [clean:clean] [INFO] [resources:resources] [INFO] [co

Re: Where is the superpom?

2006-10-09 Thread Christofer Jennings
OK, Thanks. That one looks just like the one I found in maven-project-2.0.4.jar The " " stuff had me thinking it was just a snippet. Thanks All! ,chris On 10/9/06, Eric Redmond <[EMAIL PROTECTED]> wrote: http://svn.apache.org/repos/asf/maven/components/trunk/maven-project/src/main/resour

Re: assembly:assembly does everything twice

2006-10-09 Thread Eric Redmond
Does it run twice in a row? When you run "package", Maven will print out all of the goals executed, one by one. Can you list them please? Such as: [resources:resources] [compiler:compile] [resources:testResources] ... Thanks; Eric On 10/9/06, pjungwir <[EMAIL PROTECTED]> wrote: Hello, I tr

Re: reactor?

2006-10-09 Thread dan tran
reactor is the term maven uses to process multi modules build. The reactor file you see is maven1 reactor plugin, maven2 has the reactor built-in -D On 10/9/06, pjungwir <[EMAIL PROTECTED]> wrote: Hello, I'm sorry for such a noobie question, but what is the reactor? I keep seeing referenc

assembly:assembly does everything twice

2006-10-09 Thread pjungwir
Hello, I tried binding the assembly plugin to the package phase, so it would just be part of my regular build. Here is what my pom says: maven-assembly-plugin assembly package

reactor?

2006-10-09 Thread pjungwir
Hello, I'm sorry for such a noobie question, but what is the reactor? I keep seeing references to it, but I don't know what it is. Googling just turns up more references, but no definition. Is this a maven 1 thing? I found this: http://www.ibiblio.org/pub/packages/maven2/maven/maven-reactor-plug

Re: Where is the superpom?

2006-10-09 Thread Eric Redmond
http://svn.apache.org/repos/asf/maven/components/trunk/maven-project/src/main/resources/org/apache/maven/project/pom-4.0.0.xml Christofer Jennings-2 wrote: > > Sorry if this is a dumb question, but I've looked and looked and can't > seem > to find the real superpom. > > ??? > ,chris > > --

Re: maven and WTP in eclipse

2006-10-09 Thread Srepfler Srgjan
Jörg Schaible wrote: Srepfler Srgjan wrote on Monday, October 09, 2006 4:17 PM: I perhaps explained incorrectly, my War has a dependency on the EJB module, not on the EAR and I declare it in the War. What happens is that the eclipse:eclipse task links the library installed in the repo not th

mvn2: build release

2006-10-09 Thread Attila Mezei-Horvati
I am about to finish the port from ant to maven of our project. As a result, I have now a structure of projects, with each one of them having their own pom file. I was wondering how can I do a mvn clean compile/package/install/release from the project main pom so that all dependent projects get a

Re: Where is the superpom?

2006-10-09 Thread dan tran
did you search for "super pom maven"? :-) On 10/9/06, Christofer Jennings <[EMAIL PROTECTED]> wrote: Sorry if this is a dumb question, but I've looked and looked and can't seem to find the real superpom. ??? ,chris

Re: Where is the superpom?

2006-10-09 Thread ben short
http://maven.apache.org/guides/introduction/introduction-to-the-pom.html On 10/9/06, Christofer Jennings <[EMAIL PROTECTED]> wrote: Sorry if this is a dumb question, but I've looked and looked and can't seem to find the real superpom. ??? ,chris -

Where is the superpom?

2006-10-09 Thread Christofer Jennings
Sorry if this is a dumb question, but I've looked and looked and can't seem to find the real superpom. ??? ,chris

Maven 1.1 RC1 SNAPSHOT needs testers

2006-10-09 Thread Arnaud HERITIER
about the rejected key of the host if you use the scp or the sftp protocols to deploy your artifacts. The more feedbacks we'll have, the more stable will be the RC1 !! Thanks for your help... Cheers, The maven team. [1] http://people.apache.org/repo/m1-snapshot-repository/maven/distrib

Re: Continuum abruptly stopped

2006-10-09 Thread Anoop kumar V
On 10/9/06, Anoop kumar V <[EMAIL PROTECTED]> wrote: Here is some more log...attachedAnoopOn 10/9/06, Jesse McConnell < [EMAIL PROTECTED]> wrote: ya, I don't think 100 lines back is enough for that, could you getsome more before the Stopping Jetty bit would be good On 10/9/06, Anoop kumar V <[EMAIL

property naming convention

2006-10-09 Thread pjungwir
Hello, The Better Builds with Maven book says that you can get any element from the POM with a property like ${project.foo.bar.baz}. Is there a more general naming convention for properties used by plugins? I see that the maven-surefire-plugin has configuration elements with these property names:

maven-assembly-plugin troubles

2006-10-09 Thread Swenson, Eric
I'm trying to assemble an image consisting of the artifacts created by a maven2 project. The artifacts (all installed and in the repository) are of three forms: - jar files - wsr files - war files I'm trying to author a pom and assembly descriptor file that wil

Re: dependency quirck?

2006-10-09 Thread Stephen Duncan
Provided-scope dependencies are not set to provided when pulled in transitively. See: http://jira.codehaus.org/browse/MNG-2205 (I think) The only solution I know of is to declare the dependency on the servlet-api in the web module with scope=provided. -Stephen On 10/9/06, Jeroen Verhagen <[EMA

Re: docbook plugin

2006-10-09 Thread pjungwir
Jacek Laskowski-4 wrote: > > On 10/9/06, Andr?s <[EMAIL PROTECTED]> wrote: >> I don't know about such a "pre-site" phase. Indeed, I think there's no >> "site" phase either. Is it a "typo", or I'm missing something?. > It's executed right before the 'site' phase. Run 'mvn site' and see > what hap

Re: "mvn eclipse:eclipse"

2006-10-09 Thread Max Cooper
'mvn eclipse:eclipse' goal works for me, and it does NOT create an entry like this: Is there a setting in your pom.xml file that would lead Maven to believe that "." is a Java source directory? Or perhaps there is a bug in the plugin that only occurs when you don't follow the Maven direc

Re: using ant to do the packaging

2006-10-09 Thread r maclean
Hi Nigel: I'm struggling with my Jar packaging...though I cannot offer you a solution, I am just curious to know if you had to install ANT separately and declare it either in the classpath or put the ant jars in the lib as suggested in the Maven2 doc (Better Builds with Maven)...this on to

Re: problem getting started

2006-10-09 Thread Bart Zagers
Thanks, The "mvn test --debug" helped me finding my problem. I found the following in the trace: [DEBUG] D:\test\VacApp\target\classes [DEBUG] D:\test\VacApp\target\test-classes [DEBUG] d:\maven\repository\junit\junit\3.8.1\junit-3.8.1.jar [DEBUG] Setting system property [localRepository]=[

Weblogic plugin

2006-10-09 Thread Morgovsky, Alexander \(US - Glen Mills\)
It is as if the stop is goal is not defined, but in fact I looked at the code and it is defined. Please help me with this if you know about this issue. Should I also post this on the Mojo plugin's user list? Thanks again. This message (including any attachments) contains confidential informat

Re: docbook plugin

2006-10-09 Thread Jacek Laskowski
On 10/9/06, Andrés <[EMAIL PROTECTED]> wrote: I don't know about such a "pre-site" phase. Indeed, I think there's no "site" phase either. Is it a "typo", or I'm missing something?. It's executed right before the 'site' phase. Run 'mvn site' and see what happens. @see http://maven.apache.org/g

RE: Generating sha1 and md5 files

2006-10-09 Thread Marilyn Sander -X \(marilysa - Digital-X, Inc. at Cisco\)
Never mind, I found the sha1sum and md5sum Linux utilities. I was thinking these were Maven functions, and that's why I couldn't find them. Sorry for any inconvenience. --Marilyn -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, October 09, 2006 12:10

Is it possible to specify the output folder name for the assembly plugin?

2006-10-09 Thread Dave Hoffer
I would like to use the assembly plug-in to create a folder containing my application's jar files and then use this folder's contents as the hand-off item to my installer program that will create the installer. The problem is that I do not find an option to specify the folder name that the assembl

Generating sha1 and md5 files

2006-10-09 Thread Marilyn Sander -X \(marilysa - Digital-X, Inc. at Cisco\)
In the "Guide to Relocation" file, one step in relocation is "5. If your project uses MD5 or SHA1 checksums you must now create new checksums for the pom files in /bar/foo in your Maven 2 repository. If the pom file needs to be signed, do that as well." I've been searching all over the docume

Local repository

2006-10-09 Thread Laura Hinojosa
Is it possible to change the location of the local repository on the fly (inside a Mojo? ( while maven is already executing ) Thanks for helping Laura Hinojosa This e-mail, and any attachments thereto, is confidential and is intended only for

Re: Idea plugin and hot deploys from Maven

2006-10-09 Thread Ralf Quebbemann
Thanks for your help Geoffrey, I really can need it. I will get back to you as soon as I think the plugin is ready for beta test. Thanks in advance Ralf Geoffrey De Smet wrote: I would be interested in testing this plugin as soon as you have an alpha or beta and supply some feedback?

[ANN] native-maven-plugin-alpha-2 released

2006-10-09 Thread dan tran
The Mojo team is pleased to announce the native-maven-plugin-1.0-alpha-2release This plugin allows user to: - Compile and link C/C++ artifacts. - Are known to be used in production for windows, linux, solaris, and macos platforms Changes to this release: - Plugin configurations are backward co

freehep-nar: status & documentation?

2006-10-09 Thread Max Bowsher
What is the status of freehep-nar for Maven 2? I've found tantalizing mentions of it in various places, but the freehep-nar site's usage docs are non-existent. Us there any documentation and/or sample code? If necessary, I can dive into the code itself, but I'd much rather get at least *some* sor

[repo] Snapshot vs. release (or "vaild" repo in pom file)

2006-10-09 Thread Matthias Wessendorf
Hi, I have some *strange* download behaivor, when being behind a firewall and using *corperate* repos (mirror of ibiblio for instance) There is a released JAR (called shale-test version 1.03). That has a dependency to a *pom*, called shale-master-1.pom. That depends on "apache-2.pom". So far s

Re: docbook plugin

2006-10-09 Thread Andrés
El 09/10/2006 15:32, Wilfred Springer escribió: It depends. You can use mine (...) Wilfred, I'm taking a look at your docbook plug-in. It looks great, but I've seen something strange in the user guide: generate-html pre-site

[m2] Trouble between release-plugin and CVS

2006-10-09 Thread Xavier Coulon
Hello, I'm trying to perform a 'mvn release:prepare' on our SCM (CVS 1.11.17) and I get the following error: [INFO] Checking in modified POMs... [INFO] Executing: cvs -z3 -f -d :ext:[EMAIL PROTECTED]:/cvs/yyy -q commit -R -F D:\DOCUME~1\xxx\LOCALS~1\Temp\scm-commit-message59827.txt pom.xml [INF

Artifact licensing on central repository

2006-10-09 Thread Andrew Wilde
Hi, I was wondering if there is a documented policy detailing what licences are acceptable when submitting artifacts to a central repository. I've read: http://maven.apache.org/guides/mini/guide-ibiblio-upload.html but there didn't seem be any detailed information on this. Thanks, Andy Wilde

[ANN] Maven Javadoc Plugin 2.1 for Maven 2 Released

2006-10-09 Thread Vincent Siveton
The Maven team is pleased to announce the release of the Maven Javadoc Plugin, version 2.1 http://maven.apache.org/plugins/maven-javadoc-plugin/ You can run mvn -U to get the latest version of the plugin, or specify the version in your project's plugin configuration: org.apache.maven.plugins m

changelog-maven-plugin and CVS

2006-10-09 Thread Sam Anabtawi
I have been trying to get the changelog-maven-plugin to work with CVS for a few hours now. I have searched for the topic and found a few good threads, but I never really found a definite solution. Error Message [WARNING] Error loading report org.apache.maven.changelog.ChangeLogReport - AbstractMe

using ant to do the packaging

2006-10-09 Thread Nigel Magnay
Hello listers I am binding things like ant tasks into the lifecycle by using the maven-antrun-plugin bound to the package phase. The ant script usually overwrites the target/blah.jar file with something new. This works well, and I get what I expect in the target directory of my build. However,

Re: creating different packages for different customers

2006-10-09 Thread Andrew Williams
If you are seperating your logic from your view correctly (i.e. product-api, product-core and product-web modules) then you can have a different product-web module for each customer and just ship the correct one :) Andrew Marek Chowaniok wrote: No one has request for this feature? Please re

Re: Maven multiproject, test inheritance

2006-10-09 Thread RobertK
Cheers for the reply Philippe. Cool, didn't know you could do that. I am guessing that you need to run the maven jar:test-jar goal to create the test jar? (The generates an error for me?) My original idea was to create a brand new sub project that would handle all unit tests, so it could share

Re: creating different packages for different customers

2006-10-09 Thread Marek Chowaniok
No one has request for this feature? Please reply if you are using this. Marek Marek Chowaniok wrote: > > Hi all, > In our company we need to create more packages (jar, war) for different > customers. The content mostly will be same (like "logic layer" of the > application) but the "view layer

Release plugin on multiple projects

2006-10-09 Thread Kjetil �stre
Hi, I'm using the reactor option to build three projects in the same directory with maven. projectOne/ projectTwo/ projectThree/ projectOne is the parent of projectTwo and projectOne has projectThree as a dependency. When I try to do 'mvn -r release:prepare' the plugin finds all the

"mvn eclipse:eclipse"

2006-10-09 Thread Sybren Stüvel
Hi folks, When I perform a "mvn eclipse:eclipse" command in our "argus-core" project, Eclipse bugs on the generated .classpath file. This is what's generated: [ snipped a lot more .jar files] The error that Eclipse gives me is: "Cannot nest 'argus-core/resources/conf

RE: settings.xml examples from BBwM Book dont work

2006-10-09 Thread Scott Seiter
Michael, I'm struggling with the same issue; did you ever find an answer on this? Scott -Original Message- From: Locher, Michael [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 26, 2006 1:59 AM To: Maven Users List Subject: settings.xml examples from BBwM Book dont work Hi I am try

Re: java2wsdl

2006-10-09 Thread Marco Mistroni
Hello, i see in my case, my wstools (jboss) can see the Java file from which generate the wsdl because i am specifying it as an ant task, and i am specifying the classpath.. that's why the tool sees my interface check on plugin docs if there is a way to specify classpath... hth marco On

Re: Warnings accessing M1 repository

2006-10-09 Thread Arnaud HERITIER
You can try to ask how it works to Jason or Carlos on the channel irc.codehaus.org #maven Arnaud On 10/9/06, Sybren Stüvel <[EMAIL PROTECTED]> wrote: > Here is the address : > http://svn.apache.org/repos/asf/maven/components/trunk/maven-repository-tools/ That one works fine. > But it seems

RE: hexadecimals as integer parameters

2006-10-09 Thread Philippe Faes
Thanks Martin, I'll check with the plexus people Philippe On Mon, 2006-10-09 at 14:12 +0200, Zeltner Martin wrote: > Hello Philippe > > I think this part should be corrected somewhere in Plexus container > (http://plexus.codehaus.org/), that is referenced in maven-core of Maven > components. >

RE: maven and WTP in eclipse

2006-10-09 Thread Jörg Schaible
Srepfler Srgjan wrote on Monday, October 09, 2006 4:17 PM: > I perhaps explained incorrectly, my War has a dependency on the EJB > module, not on the EAR and I declare it in the War. > What happens is that the eclipse:eclipse task links the library > installed in the repo not the eclipse project.

Re: Maven multiproject, test inheritance

2006-10-09 Thread Philippe Faes
Rob, You can make the test classes of one project visible in the test phase of another project: com.example someArtifact 0.1.1-SNAPSHOT test-jar test greets, Philippe On Mon, 2006-10-09 at 06:10 -0700, RobertK wrote: > Hi, > > first off, using maven 1.0.

Re: Warnings accessing M1 repository

2006-10-09 Thread Sybren Stüvel
> Here is the address : > http://svn.apache.org/repos/asf/maven/components/trunk/maven-repository-tools/ That one works fine. > But it seems that there's a problem with some unknown dependencies. Yup, got that problem too :( -- Sybren Stüvel <[EMAIL PROTECTED]> Software Engineer CHESS iBusine

RE: sjc (jaxb) plugin for jdk1.4

2006-10-09 Thread Swenson, Eric
Thanks. I found the jaxb1-maven-plugin at org.codehaus, which is working for me fine. But I'll take a look at the one you cite, below as well. Thanks. -- Eric -Original Message- From: Aleksei Valikov [mailto:[EMAIL PROTECTED] Sent: Monday, October 09, 2006 1:18 AM To: Maven Users List

Re: maven and WTP in eclipse

2006-10-09 Thread Srepfler Srgjan
Adam Hardy wrote: Srepfler, make sure you're using the latest maven-eclipse-plugin snapshot from the snapshots repo at http://people.apache.org/maven-snapshot-repository This supports 1.5. I can't help you with the jboss stuff, sorry, but it sounds like you have got your inter-project depend

Re: Warnings accessing M1 repository

2006-10-09 Thread Arnaud HERITIER
ops; so sorry !!! I didn't see I sent to you the viewcvs link. Here is the address : http://svn.apache.org/repos/asf/maven/components/trunk/maven-repository-tools/ Arnaud On 10/9/06, Sybren Stüvel <[EMAIL PROTECTED]> wrote: Then what am I doing wrong? $ svn co http://svn.apache.org/view

Re: java2wsdl

2006-10-09 Thread dan tran
I think you specified the wrong goal. On 10/9/06, Javier Leyba <[EMAIL PROTECTED]> wrote: On 10/9/06, Marco Mistroni <[EMAIL PROTECTED]> wrote: > hi, > i have never used axistools plugin.. but for other code-generation plugins, > normally sourceDirectory is the source of your java files whic

Re: Lib dependencies in .war artifact

2006-10-09 Thread ArneD
Morgovsky, Alexander (US - Glen Mills) wrote: > > Hi. I need some .jar's for compilation of a .war artifact, but I want > to only include a subset of these in the WEB-INF/lib. If I set the > subset of the ones for inclusion with the scope of runtime for each, > they will not be used for compil

Re: docbook plugin

2006-10-09 Thread Wilfred Springer
It depends. You can use mine if you're looking for: * Configuration of the stylesheets using the plugin configuration mechanism; * A solution that has everything included in the actual plugin; (No manual downloading of stylesheets or the DTD) * Entity resolution u

Re: Warnings accessing M1 repository

2006-10-09 Thread Sybren Stüvel
Then what am I doing wrong? $ svn co http://svn.apache.org/viewvc/maven/components/trunk/maven-repository-tools/ svn: PROPFIND request failed on '/viewvc/maven/components/trunk/maven-repository-tools' svn: PROPFIND of '/viewvc/maven/components/trunk/maven-repository-tools': 302 Found (http://svn.a

Maven multiproject, test inheritance

2006-10-09 Thread RobertK
Hi, first off, using maven 1.0.2 multiproject to build, test and deploy about 8 sub-projects. Everything working there smoothly (got to love Maven! :) ) Now my question, many of my projects repeat the same unit test or data, so the whole project suffers from the annoying / untidy symptom of "cop

Re: Warnings accessing M1 repository

2006-10-09 Thread Arnaud HERITIER
You can use the one I gave. But it seems that there's a problem with some unknown dependencies. Carlos, Jason, did you use it recently ? Arnaud On 10/9/06, Sybren Stüvel <[EMAIL PROTECTED]> wrote: Arnaud HERITIER wrote: >> Is there a way to convert my M1 repository to M2, or at least >> aut

Re: Warnings accessing M1 repository

2006-10-09 Thread Sybren Stüvel
Arnaud HERITIER wrote: >> Is there a way to convert my M1 repository to M2, or at least >> automatically create those POM files so that the web isn't accessed for >> each and every one of them, every time I run a mvn command? > > This tool can help you to convert your repository. > > http://sv

Re: java2wsdl

2006-10-09 Thread Javier Leyba
On 10/9/06, Marco Mistroni <[EMAIL PROTECTED]> wrote: hi, i have never used axistools plugin.. but for other code-generation plugins, normally sourceDirectory is the source of your java files which are supposed to go thru the code-generation tool Ok, but java2wsdl use to need to know wich is

Re: maven and WTP in eclipse

2006-10-09 Thread Adam Hardy
Srepfler, make sure you're using the latest maven-eclipse-plugin snapshot from the snapshots repo at http://people.apache.org/maven-snapshot-repository This supports 1.5. I can't help you with the jboss stuff, sorry, but it sounds like you have got your inter-project dependencies mixed up.

Re: java2wsdl

2006-10-09 Thread Marco Mistroni
hi, i have never used axistools plugin.. but for other code-generation plugins, normally sourceDirectory is the source of your java files which are supposed to go thru the code-generation tool hth marco On 10/9/06, Javier Leyba <[EMAIL PROTECTED]> wrote: Hi I'm trying to generate wsdl file fr

SV: buildnumber for maven2

2006-10-09 Thread Ravinder Singh
Problem is that when jars are merged into ie an ear, the included snapshot jars don't have its timestamp on it, since it readtrieves it from the local repository, which doesn't keep timestamps on jars. Is it a way to configure so that the local repository also keeps timestamp? -Opprinnelig

Re: Warnings accessing M1 repository

2006-10-09 Thread Naess, Ronny
Cool! Does there exist any documentation as well, or is it so straight forward that even my mother could do it? -Ronny -Opprinnelig melding- Fra: Arnaud HERITIER [mailto:[EMAIL PROTECTED] Sendt: 9. oktober 2006 14:27 Til: Maven Users List Emne: Re: Warnings accessing M1 repository ...

Re: Eclipse and web services

2006-10-09 Thread Marco Mistroni
Hello, yes probably it was old... but do as you normally do when you use External tools in your eclipse for any other external tools.. in my case, with WTP i'll have to goto Window/Preferences/RunDebug/String Substitution once you are there, you click on 'New' where you can enter name and Valu

RE: SV: jar and war together

2006-10-09 Thread Mark Struberg
Hi! I attached the patch for the AbstractWarMojo. The changes against the actual subversion revision (which is almost the state of 2.04) are only the invocation of the MavenProjectHelper to set the jar as attached artifact. projectHelper.attachArtifact( project, "jar", "webclasses", jarFile

Re: Warnings accessing M1 repository

2006-10-09 Thread Arnaud HERITIER
... Is there a way to convert my M1 repository to M2, or at least automatically create those POM files so that the web isn't accessed for each and every one of them, every time I run a mvn command? This tool can help you to convert your repository. http://svn.apache.org/viewvc/maven/compo

SV: dependency quirck?

2006-10-09 Thread Naess, Ronny
This is strange. Test it some more and be sure you do it correct and if you are doing everything the right way you should file it as a bug in jira. You can also try scope = system. This is what the documentation says: PROVIDED - this is much like compile, but indicates you expect the JDK or a cont

RE: hexadecimals as integer parameters

2006-10-09 Thread Zeltner Martin
Hello Philippe I think this part should be corrected somewhere in Plexus container (http://plexus.codehaus.org/), that is referenced in maven-core of Maven components. Here a useful link how to build Maven 2 with your patched Plexus version * http://maven.apache.org/guides/development/guide-bu

Re: maven and WTP in eclipse

2006-10-09 Thread Srepfler Srgjan
Rod Coffin wrote: Hi Adam, I do this frequently using the Maven eclipse plugin. This plugin will generate the necessary Eclipse project files from your Maven metadata. You can find information on the plugin at: http://maven.apache.org/plugins/maven-eclipse-plugin/. You will need to specify

SV: jar and war together

2006-10-09 Thread Naess, Ronny
He provided a patch to be used. That shuld solve the problem. Maybe Mark kan give you som further information in how to use that patch? -Ronny -Opprinnelig melding- Fra: Neeraj Bisht [mailto:[EMAIL PROTECTED] Sendt: 9. oktober 2006 14:04 Til: Maven Users List Emne: Re: jar and war toget

Re: jar and war together

2006-10-09 Thread Neeraj Bisht
at what extend i understand his thought i tried but get the same result as it was On 10/9/06, Naess, Ronny <[EMAIL PROTECTED]> wrote: Did you take a look at what Mark Struberg wrote? -Ronny -Opprinnelig melding- Fra: Neeraj Bisht [mailto:[EMAIL PROTECTED] Sendt: 9. oktober 2006 13:19

Re: SV: Warnings accessing M1 repository

2006-10-09 Thread Wim Deblauwe
From what I have understood is that in M1, you can easily create a repository "by hand", but in M2, this is much harder. It is better to use Proximity to create your repository (if you are talking about a company-wide 'local' repository) or just let M2 download the correct dependencies from ibibl

Re: dependency quirck?

2006-10-09 Thread Jeroen Verhagen
Hi Ronny, On 10/9/06, Naess, Ronny <[EMAIL PROTECTED]> wrote: Compile scope is included in classpath. Try scope = provided I tried that, made sure everything was cleaned but the servlet-api jar is still there. regards, Jeroen -

Re: SV: Including test classes in snapshot jar

2006-10-09 Thread Sybren Stüvel
This works like a charm, thanks!! Sybren Naess, Ronny wrote: > One way is to use maven-jar-plugin and spesify test-jar goal. This gives you > a jar containing test classes and test resources in addition to the main jar. > > I the jar you want to also genrerate a test-jar for: > > >

  1   2   >