Re: Obtaining a plugin's dependencies

2007-01-09 Thread Mark Hobson
On 08/01/07, Niels Gylling [EMAIL PROTECTED] wrote: That did not work, ${plugin.artifacts} og ${plugin.artifactMap} did resolved when the plugin was executed - I had to use the 'brute force' method of resolving the plugin artifact dependencies manually. Have you got

cannot find images in APT files

2007-01-09 Thread Martin Goldhahn
Hi! I want to render an APT file that I use in my site as a PDF file. Maven's site plugin finds the image because it is located in src/site/resources. It seams that this path is not added to doxia's classpath. Thus it cannot find the image. How do I tell the doxia-maven-plugin that it should

[m2] Dependency Resolution Question for report writing.

2007-01-09 Thread Robert Langridge
Hi All, I have written a couple of report plugins to date but I am currently stuck. I would like to ensure that the 'package' lifecycle is called before my report plugin. I've tried defining @requiresDependencyResolution package but this doesn't appear to work. I know it is possible to call a

Re: [m2] Dependency Resolution Question for report writing.

2007-01-09 Thread Mark Hobson
On 09/01/07, Robert Langridge [EMAIL PROTECTED] wrote: Hi All, I have written a couple of report plugins to date but I am currently stuck. I would like to ensure that the 'package' lifecycle is called before my report plugin. I've tried defining @requiresDependencyResolution package but this

[m2] is it possible to prevent POM inhertitance?

2007-01-09 Thread Robert Langridge
Hi all, I have written a report plugin that I only want to run for the parent project of my multi-module project. Is is possible to prevent the children from inheriting the report? Cheers, Rob Langridge This communication together with any attachments transmitted with it (this E-Mail)

torquee Object Build Error

2007-01-09 Thread Murugan
Hi All Whe i am creating torquee object like this mvn war . It will throw an build error.so what can i do now. Thanks in advance regards Murugan -- View this message in context: http://www.nabble.com/torquee-Object-Build-Error-tf2944816s177.html#a8234773 Sent from the

Re: Obtaining a plugin's dependencies

2007-01-09 Thread Niels Gylling
Thanks Mark, it works. Now next step is figuring out how I missed it from the documentation... /Niels Mark Hobson wrote: On 08/01/07, Niels Gylling [EMAIL PROTECTED] wrote: That did not work, ${plugin.artifacts} og ${plugin.artifactMap} did resolved when the plugin was executed - I had to use

Re: Obtaining a plugin's dependencies

2007-01-09 Thread Mark Hobson
On 09/01/07, Niels Gylling [EMAIL PROTECTED] wrote: Thanks Mark, it works. Now next step is figuring out how I missed it from the documentation... Problems with finding answers in the Maven documentation? Surely not.. ;) Mark

[m2] Generating release POMs

2007-01-09 Thread Mark Hobson
Hey there, Upon investigating whether generating release POMs [1] could resolve the problems with using version ranges, I discovered that it wasn't actually implemented [2]. What was the reason for this phase being commented out? It looks a lot of the work has already been done [3]. Cheers,

Re: junit4 support added

2007-01-09 Thread Zaphod
Yes of course I use this repo url. But I searched for a 2.3-SNAPSHOT in this repo and didn't found it. I suppose surefire-junit4/2.1-SNAPSHOT/ is the one you mean, isn't it? But when I try to use plugin

Compiling with javamake

2007-01-09 Thread Martin Moser
Hi all, I wanted to compile my project with javamake instead of javac. Therefore I changed the compiler plugin as follows: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-compiler-plugin/artifacdId configuration

RE: junit4 support added

2007-01-09 Thread LECAN Damien
Hello, Use Surefire Plugin instead http://people.apache.org/repo/m2-snapshot-repository/org/apache/maven/plugins/maven-surefire-plugin/2.3-SNAPSHOT/ Damien -Message d'origine- De : Zaphod [mailto:[EMAIL PROTECTED] Envoyé : mardi 9 janvier 2007 11:50 À : users@maven.apache.org Objet

Re: junit4 support added

2007-01-09 Thread Tom Huybrechts
the plugin itself is in group org.apache.maven.plugins http://people.apache.org/repo/m2-snapshot-repository/org/apache/maven/plugins/maven-surefire-plugin/2.3-SNAPSHOT/ On 1/9/07, Zaphod [EMAIL PROTECTED] wrote: Yes of course I use this repo url. But I searched for a 2.3-SNAPSHOT in this repo

Dependency while bundling a ear file

2007-01-09 Thread Ran Zilber
Hi When having a bundled ear module with nested wars, how can I 'tell' the war packaging to skip the decencies for compilation? As a result I want that all the dependency JAR(s) will reside in the ear and each of the nested war lib will be empty. Thanks a lot. -Ran. This message

Re: [m2] is it possible to prevent POM inhertitance?

2007-01-09 Thread franz see
Good day to you, Robert, To make your plugin run only on the aggregating project, try adding an @aggregator to your mojo's annotation and run it against the aggregating project. This will prevent your goal in running in your project's modules as well. To prevent the inheritance of the plugin,

Re: xdoc paragraphs

2007-01-09 Thread drekka
Ahhh, I've just encountered this as well. I tried all sorts of things and could not get p/p tags included. It seems it included all p tags up until the first occurance of something else. After that, nothing. For example I had pa/p pa/p ol/ol pa/p The first two paragraphs got in, the last

M2 classpath for ant taskdef

2007-01-09 Thread Ran Zilber
Hi all, I am trying to invoke ant 'taskdef' using the current maven complie classpath. What is the maven class path variable I can use? Here is the pom snippet: plugin artifactIdmaven-antrun-plugin/artifactId executions execution

Re: Is there a way to escape variables during process-resources

2007-01-09 Thread franz see
Good day to you, Adrien, Last time I tried, the workaround in [1] works. Cheers, Franz [1] http://jira.codehaus.org/browse/MRESOURCES-29 Geymond, Adrien wrote: Hello, I am using maven 2.0 and filtering. I am facing the following issue: I have the following entry in my

APT

2007-01-09 Thread Jan-Oliver Wuelfing
Hi all, Iam a first time-user and use Maven´s site function to get a html-doku Is there any apt-command to include source-code into the site, like scr? Do I´ve to copy the code fragments and format them on my own? Thanx Jan

Re: cannot find images in APT files

2007-01-09 Thread Vincent Siveton
Hi Martin, 2007/1/9, Martin Goldhahn [EMAIL PROTECTED]: Hi! I want to render an APT file that I use in my site as a PDF file. Maven's site plugin finds the image because it is located in src/site/resources. It seams that this path is not added to doxia's classpath. Thus it cannot find the

Re: APT

2007-01-09 Thread franz see
Good day to you, Jan, You can try and take a look at [1]. Cheers, Franz [1] http://maven.apache.org/guides/mini/guide-snippet-macro.html Jan-Oliver Wuelfing wrote: Hi all, Iam a first time-user and use Maven´s site function to get a html-doku Is there any apt-command to include

Re: M2 classpath for ant taskdef

2007-01-09 Thread franz see
Good day to you, Ran, You can try and take a look at [1]. Cheers, Franz [1] http://maven.apache.org/plugins/maven-antrun-plugin/classpaths.html Ran Zilber wrote: Hi all, I am trying to invoke ant 'taskdef' using the current maven complie classpath. What is the

Configuring maven 2.0 project

2007-01-09 Thread Wojtek Ciesielski
Hi there, I have problem with adding new maven 2.0 project via URL... How can I specify SVN authorization info (user/password) while specyfing connection URL? Wojtek

RE: M2 classpath for ant taskdef

2007-01-09 Thread Ran Zilber
Dear Franz, Thanks a lot you did my day!!! :-) -Original Message- From: franz see [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 09, 2007 3:00 PM To: users@maven.apache.org Subject: Re: M2 classpath for ant taskdef Good day to you, Ran, You can try and take a look at [1]. Cheers,

Re: xdoc paragraphs

2007-01-09 Thread nicolas de loof
I have the same issue with a : subsection p.../p ul.../ul p.../p /subsection subsection p.../p ... Second section is rendered in HTML with no p tag. I added two empty p/p in my subsection and it (seems to) fix the issue. Nico. 2007/1/9, drekka [EMAIL PROTECTED]: Ahhh, I've just

Re: Configuring maven 2.0 project

2007-01-09 Thread Emmanuel Venisse
What is the protocol you use to access to your pom? If it's http/https, you can use this format: http[s]://user:[EMAIL PROTECTED]:port/path If your pom is added correctly and it's only a pb for checkout, you can set user/password in the Project Edit page Emmanuel Wojtek Ciesielski a écrit :

Re: [m2] JUnit test setUp() and tearDown() not called

2007-01-09 Thread Andrew Birchall
Sorry its me being dumb and not looking far enough into it. Eclipse was using JUnit 4, which Maven doesn't support yet. Simple as that really. Sorry Andy On 09/01/07, berndq [EMAIL PROTECTED] wrote: Hi Andy, Ah, i figured it out it was Eclipse being clever and running setUp() and tearDown()

Re: Configuring maven 2.0 project

2007-01-09 Thread Wojtek Ciesielski
Emmanuel Venisse wrote: What is the protocol you use to access to your pom? If it's http/https, you can use this format: http[s]://user:[EMAIL PROTECTED]:port/path If your pom is added correctly and it's only a pb for checkout, you can set user/password in the Project Edit page Thanks for

RE: [m2] is it possible to prevent POM inhertitance?

2007-01-09 Thread Robert Langridge
Thanks a lot for your help :D -Original Message- From: franz see [mailto:[EMAIL PROTECTED] Sent: 09 January 2007 12:06 To: users@maven.apache.org Subject: Re: [m2] is it possible to prevent POM inhertitance? Good day to you, Robert, To make your plugin run only on the aggregating

Re: Configuring maven 2.0 project

2007-01-09 Thread Wojtek Ciesielski
I think I might now what the problem is. I've tried to manually DL this pom.xml with wget on the machine where continuum is installed. After issuing such a command: wget https://woci:mypass@my svn url/pom.xml I got: Resolving svn.my-company.pl... 10.1.1.3 Connecting to

Re: Configuring maven 2.0 project

2007-01-09 Thread Emmanuel Venisse
yes, it's a pb with the certificate, you can add it in your jdk. There, a sample on how to install a certificate with keytool : http://docs.codehaus.org/display/HAUSMATES/WebDAV#WebDAV-InstallingtheAddTrustCAintotheJavaJDK Wojtek Ciesielski a écrit : I think I might now what the problem is.

Re: [m2] Generating release POMs

2007-01-09 Thread Yann Le Du
+1 on that http://www.nabble.com/forum/ViewPost.jtp?post=6099444framed=yskin=177 - Yann 2007/1/9, Mark Hobson [EMAIL PROTECTED]: Hey there, Upon investigating whether generating release POMs [1] could resolve the problems with using version ranges, I discovered that it wasn't actually

Re: [m2] Generating release POMs

2007-01-09 Thread Mark Hobson
On 09/01/07, Yann Le Du [EMAIL PROTECTED] wrote: +1 on that http://www.nabble.com/forum/ViewPost.jtp?post=6099444framed=yskin=177 Thanks for the link, that'll teach me not to search the archives first ;) Looks like this thread was hijacked by an unrelated issue and never got answered, so the

RE: maven version management in ant

2007-01-09 Thread EJ Ciramella
This is a bit backward, I'm using ant to build and maven to manage dependencies. See: http://maven.apache.org/ant-tasks.html -Original Message- From: Sean Hennessy [mailto:[EMAIL PROTECTED] Sent: Monday, January 08, 2007 1:30 PM To: Maven Users List Subject: RE: maven version

RE: maven version management in ant

2007-01-09 Thread EJ Ciramella
All of these are blank: echo${maven.dependency.classpath}/echo echo${maven.compile.classpath}/echo echo${maven.runtime.classpath}/echo echo${maven.test.classpath}/echo echo${maven.plugin.classpath}/echo Here is my full target: target name=init artifact:pom

Re: [m2] Generating release POMs

2007-01-09 Thread Mark Hobson
On 09/01/07, Mark Hobson [EMAIL PROTECTED] wrote: Thanks for the link, that'll teach me not to search the archives first ;) Looks like this thread was hijacked by an unrelated issue and never got answered, so the question still stands. Seeing as I've never seen this in action, I assume the

Question about injecting properties in a Mojo

2007-01-09 Thread Petar Tahchiev
Hi gyus, I have the following question: Is it possible to inject (instantiate a property) in a mojo with some other technique, other than annotation? I am asking because I have the following problem: I want in my mojo to call other mojo but since the other mojo doesn't have a put method, but

Maven Ant Task problem when used with Ant 1.7.0

2007-01-09 Thread Loic Jay
Hi, I have a problem when using the maven ant task 2.0.4 with Ant 1.7.0. The fileset created by the maven:dependencies task raises a NullPointerException when used in the Ant pathconvert task. Here an excerpt of the code which runs into this problem: !-- The Artifact to be looked for

war plugin for content managment

2007-01-09 Thread Todd Nine
Hi all, I have a bit of a different situation for building, and I'd like some input from the community on the best approach. Here is my problem. I will have 2 servers. 1 in production and 1 testing web. The servers contain an webapp that needs to be installed in the root context. Our

RE: maven version management in ant

2007-01-09 Thread Chris Hilton
Perhaps I'm not following, but how is the my.compile.dependency.fileset different from what you want? Unless you really wanted a path reference, in which case you replace filesetId with pathId. Or you want that in a property? Then add: property name=my.compile.dependency.fileset

Applets and assembly of webapps

2007-01-09 Thread andy law \(RI\)
All, My Head Hurts. I have a situation where I need to build a webapp that has an applet included in its web tree. I have been trying to work out how to use the assembly plugin to achieve this, with no success. I can make the web-app dependent on the applet, in which case the applet is included

Re: [m2] JUnit test setUp() and tearDown() not called

2007-01-09 Thread Tom Huybrechts
see the recent thread 'junit4 support added' ... On 1/9/07, Andrew Birchall [EMAIL PROTECTED] wrote: Sorry its me being dumb and not looking far enough into it. Eclipse was using JUnit 4, which Maven doesn't support yet. Simple as that really. Sorry Andy On 09/01/07, berndq [EMAIL PROTECTED]

Re: war plugin for content managment

2007-01-09 Thread Wayne Fay
The M2 Cargo plugin is useful for deploying things. So once you have a release cut, I'd log into PROD and do a Cargo deploy, or perhaps even do the deploy right from the build machine if you find that Cargo supports remote deploy for your specific container. Wayne On 1/9/07, Todd Nine [EMAIL

plugin not found error and jta

2007-01-09 Thread JavierL
Hi Since today I'm receiving an error message like this: - 'org.apache.maven.plugins:maven-resources-plugin' does not exist or no valid version could be found -- when I try to do a mvn compile. Could please somebody tell me why this problem and how could I solve it ? I've

R: [m2] Generating release POMs

2007-01-09 Thread Luca Dall'Olio
Just in case I can add something helpful, I would like to cite this maven requirements document (don't know if its too old to be still of any use...) : http://docs.codehaus.org/display/MAVEN/Dependency+Mediation+and+Conflict+Res olution (see the Reproducibility Chapter) Citing : ... This means

Can the assembly plugin output to file share?

2007-01-09 Thread Dave Hoffer
Is it possible to configure the assembly plugin to put the final output on a network share? binaries outputDirectory\\server\share\folder/outputDirectory includeDependenciestrue/includeDependencies unpackfalse/unpack /binaries For example, when I do the above it puts the

Re: adding dependant jar to assembly?

2007-01-09 Thread Mick Knutson
I can't seem to find version 2.2, only 2.1 and this still does not work (the dependancies are ignored it seems: !-- | This is the configuration file for Maven. It can be specified at two levels: | | 1. User Level. This settings.xml file provides configuration for a single user, |

[OT] JAVAWUG Canvasing for Speakers in 2007

2007-01-09 Thread Peter . Pilgrim
Hi The Java Web User Group (JAVAWUG, UK) is canvasing for quality speakers in 2007. If you are going in and near London, England this year and would like to present a topic to our Java User Group then contact myself for further details. -- Peter Pilgrim, JUG Leader ::

[ANN] Maven Eclipse Plugin 2.3 Released

2007-01-09 Thread Fabrizio Giustina
The Maven team is pleased to announce the release of the Maven Eclipse Plugin, version 2.3. http://maven.apache.org/plugins/maven-eclipse-plugin/ You can run mvn -U to get the latest version of the plugin. Changes:

RE: HOW TO - Use maven-eclipse-plugin to build a RCP Target Platform and an internal repository from an Eclipse installation

2007-01-09 Thread David Jackman
This looks like good information (though I haven't tried it yet). Why is it in a page that looks like it's about the Maven plugin for Eclipse (seeing how it's in the Maven Plugins section of the hierarchy) instead of the Building Eclipse RCP and RCP-based Applications page (which already exists)?

Re: Howto debug filtered webapp, advice wanted

2007-01-09 Thread Mikael Andersson
Hi, thanks for the info. I'll check it out. On 08/01/07, Dan Hardiker [EMAIL PROTECTED] wrote: Hi, Have you tried Remote Debugging in IDEA? Essentially you choose whether to connect over a socket or shared memory, and then put some extra parameters on the Java runtime (e.g. into the

RE: Can the assembly plugin output to file share?

2007-01-09 Thread andy law \(RI\)
Although I don't really know what I'm talking about, I would be looking at the baseDirectory tag in the assembly descriptor if I was you. Later, Andy - Yada, yada, yada... The information contained in this e-mail (including any attachments) is confidential and is intended for the

Re: plugin not found error and jta

2007-01-09 Thread Wayne Fay
JTA cannot be provided via Maven due to its licensing. You will have to download it from Sun and install it manually via mvn install:install-file. It might be available from JBoss, Glassfish, Harmony, or Geronimo under different licensing but you'll need to research this yourself. Wayne On

Multi-Module flat level parent POM problems

2007-01-09 Thread rking999
Hi, I have a project structure similar to the following in SCM: parent--branch--Maven--pom.xml module1--branch--Maven--pom.xml module2--branch--Maven--pom.xml It is a flat structure and I have had to branch the projects so as not to harm development using the old build system whilst we are

Re: Question about injecting properties in a Mojo

2007-01-09 Thread Petar Tahchiev
On 09/01/07, Petar Tahchiev [EMAIL PROTECTED] wrote: Hi gyus, I have the following question: Is it possible to inject (instantiate a property) in a mojo with some other technique, other than annotation? I am asking because I have the following problem: I want in my mojo to call other mojo but

Re: plugin not found error and jta

2007-01-09 Thread JavierL
Wayne Fay wrote: JTA cannot be provided via Maven due to its licensing. You will have to download it from Sun and install it manually via mvn install:install-file. It might be available from JBoss, Glassfish, Harmony, or Geronimo under different licensing but you'll need to research

Re: R: [m2] Generating release POMs

2007-01-09 Thread Mark Hobson
On 09/01/07, Luca Dall'Olio [EMAIL PROTECTED] wrote: Just in case I can add something helpful, I would like to cite this maven requirements document (don't know if its too old to be still of any use...) : http://docs.codehaus.org/display/MAVEN/Dependency+Mediation+and+Conflict+Res olution (see

RE: maven version management in ant

2007-01-09 Thread EJ Ciramella
That seems to be working! Thank you so much for this! How was one to know that pathId existed? -Original Message- From: Chris Hilton [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 09, 2007 11:16 AM To: Maven Users List Subject: RE: maven version management in ant Perhaps I'm not

Re: Applets and assembly of webapps

2007-01-09 Thread Mark Hobson
Hi Andy, On 09/01/07, andy law (RI) [EMAIL PROTECTED] wrote: I have a situation where I need to build a webapp that has an applet included in its web tree. I have been trying to work out how to use the assembly plugin to achieve this, with no success. I can make the web-app dependent on the

Re: plugin not found error and jta

2007-01-09 Thread Wayne Fay
Try mvn -cpu to force an update of your plugins. If that doesn't work, try mvn -X to enable debug mode and see if there's more information provided as to why it won't find and use the plugin. Finally, if that doesn't work, I'd dig into the M2 cache/repo on your local machine and delete the

Re: Deploying to snapshot repository: controlling accretion

2007-01-09 Thread Steven E. Harris
Rahul Thakur [EMAIL PROTECTED] writes: I am not sure about anyway to clean up old snapshot version except for manual purge. But note that would render the metadata.xml out of sync. Right, but my assumption is that this purging would happen when Maven is deploying a new version, so it would

RE: maven version management in ant

2007-01-09 Thread Chris Hilton
It is in the docs, but a second set of eyes never hurt. http://maven.apache.org/ant-tasks.html Glad I could help. Chris -Original Message- From: EJ Ciramella [mailto:[EMAIL PROTECTED] Sent: Tuesday, 09 January, 2007 12:26 To: Maven Users List Subject: RE: maven version

Re: Deploying to snapshot repository: controlling accretion

2007-01-09 Thread Wayne Fay
Submitting an RFE in JIRA for this is the right approach. However, realize that your RFE has the best chance of actually being implemented in Maven if you do the grunt (code and test) work and then contribute it for future versions of the deploy plugin. And of course not everyone will want to

Re: plugin not found error and jta

2007-01-09 Thread JavierL
Thanks for your reply. I've deleted the folder maven-resources-plugin and the version of files there was 2.2 dated 1/9/2007 8:10:46pm I've tried mvn -cpu -X compile and got the error: -- C:\work\worldnet21\cinb\trunkmvn -cpu -X -e compile + Error stacktraces are turned on. [DEBUG]

R: R: [m2] Generating release POMs

2007-01-09 Thread Luca Dall'Olio
By a fast look at maven source code, look like a release-pom.xml would be handled by maven (org.apache.maven.Maven and org.apache.maven.DefaultMaven) : String RELEASE_POMv4 = release-pom.xml; ... if ( RELEASE_POMv4.equals( file.getName() ) ) {

Re: Deploying to snapshot repository: controlling accretion

2007-01-09 Thread Mark Hobson
On 09/01/07, Wayne Fay [EMAIL PROTECTED] wrote: Submitting an RFE in JIRA for this is the right approach. However, realize that your RFE has the best chance of actually being implemented in Maven if you do the grunt (code and test) work and then contribute it for future versions of the deploy

Re: plugin not found error and jta

2007-01-09 Thread Wayne Fay
Take a look here: http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-resources-plugin/ As you can see, there are several versions of this artifact available: 2.0, 2.1, and 2.2 being the non-beta versions. In the plugins node of your pom, specify: plugin

Maven 2 Eclipse plugin : proxy problem : NoRouteToHostException

2007-01-09 Thread Marouane Amraoui
Hi, Using maven 2, eclipse 3.2, m2eclipse 0.0.9. I have : setting.xml in both maven install directory and userhome.../.m2/setting.xml Don't success to get rout to remote repository Thx. - To unsubscribe, e-mail: [EMAIL

Re: plugin not found error and jta

2007-01-09 Thread JavierL
Hi It worked with 2.1 version for mvn compile command with my pom. Nevertheless, I'm having problems to install jta.jar. If I run C:\work\worldnet21\cinb\trunkmvn install:install-file -DgroupId=javax.transacti on -DartifactId=jta -Dversion=1.0.1B -Dpackaging=jar -Dfile=\soft\java\jta\jta.1

RE: Maven 2 Eclipse plugin : proxy problem : NoRouteToHostException

2007-01-09 Thread Chris Hilton
That's not working in 0.0.9, but has been fixed for 0.0.10, soon to be released (hopefully). http://jira.codehaus.org/browse/MNGECLIPSE-29 That fix will pick up your settings from the user home directory. Please vote for the following issue to add the ability to have m2eclipse pick up a global

Re: java.net.URISyntaxException: Illegal character in path at index 18

2007-01-09 Thread berndq
Hi Ravi Nallakukkala: HIi, Thank you very much for responding to my query! I'm convinced that bug exists, but I'm not able to follow one thing, I have around 10 jar which i'm locally creating installing to the local repository! But Only one jar is creating a problem to me! so my question is

Re: plugin not found error and jta

2007-01-09 Thread Wayne Fay
You've got something funky going on. Maven isn't going out to the Internet to look for these plugins as it should be and your builds are finishing in 1 second. Last time, it was the resources plugin. This time, its the same thing but the install plugin. Do you have a proxy or something? Run mvn

Re: Failure executing javac

2007-01-09 Thread Minto van der Sluis
Ah, found it, seems to be a known plexus compiler issue http://jira.codehaus.org/browse/PLX-314 When can this issue and the accompanying fix be expected to show up in a release? How can I in the mean time get this working locally? Kind regards, Minto van der Sluis Minto.van.der.Sluis

RE: plugin not found error and jta

2007-01-09 Thread Chris Hilton
Javier, can you do me a favor and tell what the contents of the following directory in your repository is? Hopefully you can do this before the -U Wayne asked for. repository\org\apache\maven\plugins\maven-install-plugin Specifically, I'm wondering if it is just a metadata file, probably

Re: plugin not found error and jta

2007-01-09 Thread JavierL
I solved the problem maven is going out internet without problems but, apparently, the last plugins update failed and corrupted everything it touched... I deleted maven-install-plugin folder and run mvn install and it worked (and installed mvn plugin correctly). I guess there is a bug in

Re: xdoc paragraphs

2007-01-09 Thread Dennis Lundberg
Hi This is working for me using both 2.0-beta-5 and 2.0-SNAPSHOT build from SVN. Here's the xdoc file I used to test it. Can you test with this file and see if it is working properly for you. If it does please provide a file that don't work. ?xml version=1.0? document body section

RE: Applets and assembly of webapps

2007-01-09 Thread andy law \(RI\)
Mark, On 09/01/07, andy law (RI) [EMAIL PROTECTED] wrote: I have a situation where I need to build a webapp that has an applet included in its web tree. I have been trying to work out how to use the assembly plugin to achieve this, with no success. I can make the web-app

Re: [m2] maven-changes-plugin - icons are not being displayed

2007-01-09 Thread Dennis Lundberg
Hi Can you please add a specific version for the changes plugin like this: version2.0-beta-2/version I think you might be using an old version of the plugin. -- Dennis Lundberg Dário Luís Coneglian Oliveros wrote: I did see the sample changes report and even though my changes.xml was pretty

Re: plugin not found error and jta

2007-01-09 Thread Wayne Fay
I've seen this happen before but I'm not entirely sure what causes it... I've seen people connecting to poorly configured HTTP repositories (which return HTTP 200 and a Error 404, resource not found webpage rather than a proper HTTP 404) so I'm curious... What repos are you connecting to,

Re: plugin not found error and jta

2007-01-09 Thread Wayne Fay
rtfm ;-) http://maven.apache.org/plugins/maven-compiler-plugin/examples/set-compiler-source-and-target.html Wayne On 1/9/07, JavierL [EMAIL PROTECTED] wrote: Just more thing. I'm now trying to compile and got the error: -- [12,1] annotations are not supported in -source 1.3 (try

Re: java.net.URISyntaxException: Illegal character in path at index 18

2007-01-09 Thread Wayne Fay
The location of your local repository can be changed in your user configuration. See more in the documentation: http://maven.apache.org/guides/mini/guide-configuring-maven.html Wayne On 1/9/07, berndq [EMAIL PROTECTED] wrote: Hi Ravi Nallakukkala: HIi, Thank you very much for responding

RE: plugin not found error and jta

2007-01-09 Thread Chris Hilton
Sorry to interrupt, but I've seen something similar and think I now even have a reproducible test case. I can do the following: 1. Remove the maven-clean-plugin directory from my local repository. 2. Run 'mvn -o clean'. Obviously this fails because we need to download the clean plugin and we're

Re: plugin not found error and jta

2007-01-09 Thread Wayne Fay
You're not interrupting! This is a good little test case. If you've searched JIRA and not found a matching bug, *please* do file it. And respond back with the JIRA Id so I can go vote and watch it. Wayne On 1/9/07, Chris Hilton [EMAIL PROTECTED] wrote: Sorry to interrupt, but I've seen

Re: plugin not found error and jta

2007-01-09 Thread JavierL
I use to read the manual (you know I've been working with my problem instead to sit down waiting for your reply) but sometimes is hard to get the info. How could i know that compiler is a plugin ? Too many info with no intuitive organization... Thanks for your reply... J Wayne Fay wrote:

Re: [M1] cobertura-1.8 java.lang.NoClassDefFoundError

2007-01-09 Thread Arnaud HERITIER
Hi, Having a look at the plugin code, it doesn't seem to be useful to add log4j in your classpath. When tests are executed with cobertura, the following classpath entries are added : !-- global definitions -- ant:path id=cobertura.classpath ant:pathelement path=${maven.build.dest}/

Re: [M1] cobertura-1.8 java.lang.NoClassDefFoundError

2007-01-09 Thread Jeff Jensen
Cobertura plugin 1.7 started depending on log4j 1.2.9, and the Maven plugin depends on that. Is your issue related to the version of log4j, i.e. 1.2.8 vs 1.2.9? Quoting Arnaud HERITIER [EMAIL PROTECTED]: Hi, Having a look at the plugin code, it doesn't seem to be useful to add log4j in

Re: plugin not found error and jta

2007-01-09 Thread JavierL
Well, at the time I couldn't get jta, I filled settings file with all mirrors listed in maven site, like this list: -- mirrors mirror idibiblio.org/id urlhttp://mirrors.ibiblio.org/pub/mirrors/maven2/url

RE: plugin not found error and jta

2007-01-09 Thread JavierL
Ouch, I'm sorry. I saw your mail after make Wayne recommended changes. I'm not sure but I guess there was just the folder, without a file.. Chris Hilton-2 wrote: Javier, can you do me a favor and tell what the contents of the following directory in your repository is? Hopefully you can do

[m2] Official and unofficial repositories

2007-01-09 Thread David Jackman
Our team is producing a number of artifacts, some of which are considered official and others unofficial. We want to have a separate repository for each. What I'd like to do is define both repositories in the parent pom, then each project will deploy to the correct repository based on a property

RE: plugin not found error and jta

2007-01-09 Thread Chris Hilton
Upon further review, it looks like the bug MNG-2408 is not quite the same thing but close enough that the fix for it should take care of this as well. It's already fixed for 2.0.5 and 2.1, so just need to wait a little. http://jira.codehaus.org/browse/MNG-2408 Chris -Original Message-

Re: xdoc paragraphs

2007-01-09 Thread drekka
Hi Dennis, See below for results: dennisl-2 wrote: Hi This is working for me using both 2.0-beta-5 and 2.0-SNAPSHOT build from SVN. Here's the xdoc file I used to test it. Can you test with this file and see if it is working properly for you. If it does please provide a file that

Re: xdoc paragraphs

2007-01-09 Thread Dennis Lundberg
drekka wrote: Hi Dennis, See below for results: Hi Derek, thanks for your feedback. What version of Maven and maven-site-plugin are you using? For the plugin version you can check this in the plugin-registry.xml file in your %USER_HOME%/.m2 directory. -- Dennis Lundberg dennisl-2

Re: plugin not found error and jta

2007-01-09 Thread Wayne Fay
That bug seems to indicate the Australian mirror (which is PlanetMirror in Javier's list) is probably the source of the trouble. So I'd suggest people stop using that mirror for now... at least until 2.0.5 or 2.1 is out and this bug with RELEASE and LATEST is gone. Wayne On 1/9/07, Chris Hilton

Re: xdoc paragraphs

2007-01-09 Thread drekka
Hi Dennis, I'm using the Eclipse 0.9.9 plugin I compiled a week ago from svn. I don't have a ~.m2/plugin-registry.xml file. The version of the plugin sitting in my ~.m2/repository/org/apache/plugins/maven-site-plugin is 2.0-beta-5. Does that help ? ciao Derek dennisl-2 wrote: drekka

Re: HOW TO - Use maven-eclipse-plugin to build a RCP Target Platform and an internal repository from an Eclipse installation

2007-01-09 Thread Barrie Treloar
On 1/9/07, Rahul Thakur [EMAIL PROTECTED] wrote: Could I suggest: To have this resource linked from the eclipse plugin website as well; would be nice for users looking for Maven-Eclipse integration info. Yes, but this is a first step :)

Re: HOW TO - Use maven-eclipse-plugin to build a RCP Target Platform and an internal repository from an Eclipse installation

2007-01-09 Thread Barrie Treloar
On 1/10/07, David Jackman [EMAIL PROTECTED] wrote: This looks like good information (though I haven't tried it yet). Why is it in a page that looks like it's about the Maven plugin for Eclipse (seeing how it's in the Maven Plugins section of the hierarchy) instead of the Building Eclipse RCP

Re: xdoc paragraphs

2007-01-09 Thread Dennis Lundberg
Hi Derek Yea, kinda. So you're running Maven 2 embedded inside Eclipse? Where can I find this plugin? The thing is that when I run Maven 2.0.4 with maven-site-plugin 2.0-beta-5 I get the p tags that you are missing. Do you think that you could try building the site from the command line

Help executing both unit and integration tests in a single artifact

2007-01-09 Thread Todd Nine
Hi all, I have a project that has some utility classes, as well as integration classes. The utility classes are mostly for parsing legacy data, so these can be tested with Unit tests. I want to do a full black box test with an integration test. I have the following source directory

Re: xdoc paragraphs

2007-01-09 Thread drekka
okay, Running mvn clean site produced the same result. mvn -v produced Maven version: 2.0.4. The eclipse plugin can be sourced from https://svn.codehaus.org/m2eclipse, it's rather buggy and most of the settings it it are not passed to maven. But the jar management side of it works well. ciao

Re: Help executing both unit and integration tests in a single artifact

2007-01-09 Thread Wayne Fay
There are various integration tests run as part of the Maven project build itself, which of course uses Maven to do the build and test etc. I'd take a look at their poms and how they've structured the integration test directories etc to see how you might be able to apply it to your own project.

  1   2   >