Re: including project local jars as a dependency

2005-10-29 Thread Hervé BOUTEMY
/artifactId version1.0.2/version scopesystem/scope systemPathlib/activation.jar/systemPath /dependency - Hervé Boutemy Le Samedi 29 Octobre 2005 07:48, Brill Pappin a écrit : In Maven 1 I used to be able to include project local jars and include them in the dependency list

Re: Incorrect timestamp of deploy artifact - 12 hours out? AM vs PM

2007-08-03 Thread Hervé BOUTEMY
Le vendredi 3 août 2007, Antony Stubbs a écrit : My deploy goal generates files with timestamps on them, like so: ETRWebEAR-1.0.2-20070803.083222-6.ear however, when i created this - the time was 8:32 PM! not AM, as the '24 hour' timestamp implies. The clock on my sys try correctly says

Re: Including Maven project in ant build

2007-08-03 Thread Hervé BOUTEMY
Le vendredi 3 août 2007, Developer Abe a écrit : I have a web based app (using appfuse) which is built by Maven. I am trying to deploy the project in a large scale build environment which is using Ant exclusively. The build engineers are hesitant about using Maven because they do not have

Re: Including Maven project in ant build

2007-08-03 Thread Hervé BOUTEMY
, Hervé BOUTEMY [EMAIL PROTECTED] wrote: Le vendredi 3 août 2007, Developer Abe a écrit : I have a web based app (using appfuse) which is built by Maven. I am trying to deploy the project in a large scale build environment which is using Ant exclusively. The build engineers

Re: Question on Parent Pom

2007-08-03 Thread Hervé BOUTEMY
the dependencies are to be specified in dependencyManagement: see http://maven.apache.org/ref/current/maven-model/maven.html Here is an example: http://svn.apache.org/viewvc/maven/components/trunk/pom.xml?view=markup regards Hervé Le vendredi 3 août 2007, Mark Eramo a écrit : Hello, I am

Re: maven-ant-tasks-2.0.7 settings file read hangs at install-provider

2007-08-07 Thread Hervé BOUTEMY
Hi Mykel, There is something weird happenning: I don't understand why reading a file would hang. FYI, it's working perfectly in a number of places. We'll have to find what is so special in your case. Can you get a thread dump when ant freezes? On Linux, it's: kill -SIGQUIT pid Hervé Le mardi

Re: maven-ant-tasks-2.0.7 settings file read hangs at install-provider

2007-08-07 Thread Hervé BOUTEMY
prio=1 tid=0xb2102108 nid=0x613b waiting on condition --- End of thread dump What else can I do to help? Mykel On 8/7/07, Hervé BOUTEMY [EMAIL PROTECTED] wrote: Hi Mykel, There is something weird happenning: I don't understand why reading a file would hang. FYI, it's working

Re: Need to add .class files through classpath

2007-08-07 Thread Hervé BOUTEMY
Le mardi 7 août 2007, Some user a écrit : Hi, I'm using applescript in my application that's being built using maven. I'm developing on a mac os x. To compile applescript code (I wrote a couple of proof-of-concept classes outside the project just to test things out), I had to run javac

Re: [m2] Trying to wildcard build helper

2007-08-07 Thread Hervé BOUTEMY
I suppose you'll have to file a feature request on Mojo's JIRA. Or vote for http://jira.codehaus.org/browse/MOJO-652, which could be a solution in your case? Le mardi 7 août 2007, Mick Knutson a écrit : I want to add *.jar as a file artifact like: plugin

Re: {m2] Error specifying phase for ant-run

2007-08-07 Thread Hervé BOUTEMY
If I understand well, you've declared the antrun execution in a parent pom, and want it to be executed in your modules. That's it? And I suppose it's executed in the parent project before modules. Did you try to write the antrun execution in modules, and not in parent pom? Le mardi 7 août 2007,

Re: artifact class question

2007-08-07 Thread Hervé BOUTEMY
Le mardi 7 août 2007, Sommers, Elizabeth a écrit : I am writing a plugin and I need to get the scm information out of the artifact. There does not seem to be a getter for this information in the artifact class. How do I get this info? Thanks Liz Sommers [EMAIL PROTECTED] Did you try

Re: {m2] Error specifying phase for ant-run

2007-08-08 Thread Hervé BOUTEMY
. On 8/7/07, Hervé BOUTEMY [EMAIL PROTECTED] wrote: If I understand well, you've declared the antrun execution in a parent pom, and want it to be executed in your modules. That's it? And I suppose it's executed in the parent project before modules. Did you try to write the antrun execution

Re: maven-ant-tasks-2.0.7 settings file read hangs at install-provider

2007-08-10 Thread Hervé BOUTEMY
. What appears to be the case is that the settings.xml isn't getting read prior to the attempt to acquire the provider, so it's trying (http://repo1.maven.org/maven2/) instead of (http://sirdsite/proximity/), but that's just a guess. Thanks again for your help, Mykel On 8/7/07, Hervé

Re: [m2] taglist question

2007-08-11 Thread Hervé BOUTEMY
or you can use SystemPrintln rule from PMD: http://pmd.sourceforge.net/rules/logging-java.html Le samedi 11 août 2007, Dennis Lundberg a écrit : You can use the Regexp module [1] like this: module name=Regexp !-- . matches any character, so we need to escape it and use \. to

Re: [maven-ant-tasks] Authentication from settings.xml without using POM?

2007-08-19 Thread Hervé BOUTEMY
Le lundi 13 août 2007, Benjamin Bentmann a écrit : Hi, We have an SSH-secured internal repository from which an Ant build script should download some files using the maven-ant-tasks:2.0.7. First, I tried to specify everything inline the Ant script, i.e. without using a POM, using multiple

Re: Maven Ant Tasks 2.0.7

2007-08-30 Thread Hervé BOUTEMY
Hi Hilco, Le mercredi 29 août 2007, Hilco Wijbenga a écrit : Hi all, I ran into something strange while using the Maven Ant Tasks (2.0.7). My Ant build now includes a POM which refers to a parent POM. If I have the parent POM available in my local repository everything works fine. If not,

Re: ant tasks webdav authentication

2007-08-30 Thread Hervé BOUTEMY
Le jeudi 30 août 2007, Craig Ryan a écrit : Here is an Ant build.xml snippet using maven tasks: artifact:remoteRepository id=my.repo url=dav:http://fred:[EMAIL PROTECTED] layout=default/ artifact:install-provider artifactId=wagon-webdav version=1.0-beta-2/ artifact:deploy

Re: Problem with site generation i18n

2007-09-11 Thread Hervé BOUTEMY
Hello, I suppose it's the same problem as http://jira.codehaus.org/browse/MPIR-59. It has been fixed in svn but not released yet. regards, Hervé Le dimanche 9 septembre 2007, Insitu a écrit : Hello, I ran recently into a strange problem with site generation. When I add the locale fr, maven

Re: Maven Ant Tasks 2.0.7

2007-09-12 Thread Hervé BOUTEMY
Hi Hilco, Profiles are not supported yet in Maven Ant Tasks: if you need to define a repository, it has to be done in build.xml or pom.xml. And FYI, running ant -v adds information on which repositories are used. HTH regards, Hervé Le mercredi 5 septembre 2007, Hilco Wijbenga a écrit : Hi

Re: Maven for existing ANT project

2007-09-12 Thread Hervé BOUTEMY
Hi Anny, It's the exact thing I'm doing at work, with multiple teams in different countries. Maven Ant Tasks are used to integrate Maven2 dependencies management into the build, and only dependencies management: instead of storing lib/*.jar into CVS, Maven Ant Tasks download them, then the Ant

Re: access to MavenProject help

2007-10-02 Thread Hervé BOUTEMY
I see 1 typo that would explain the problem: parameter instead of @parameter regards, Hervé Le mardi 2 octobre 2007, Mark Russell a écrit : I am trying to develop a plugin and get access to the MavenProject. Here is my code: /** * parameter expression=${project} */

Re: Site generation with modello fails

2007-10-07 Thread Hervé BOUTEMY
I looked at Modello code (and fixed the elememt typo :) ) It seems you didn't define any class as root element, ie a class with rootElement=true: this root element is not necessary to generate classes, but it is used by xdoc generation to know which class to set at the top of the XML document.

Re: Ant tasks 2.0.7 with snapshot dependencies

2007-10-22 Thread Hervé BOUTEMY
Hi Mark, There have been some issues fixed with SNAPSHOT handling during last weeks: can you check if you still have a problem with latest tasks snapshot? You can find it in http://maven.zones.apache.org/continuum/workingCopy.action?projectId=524userDirectory=target Then, if the problem is

Re: Issues with calling mvn from Ant on Linux

2006-10-09 Thread Hervé BOUTEMY
It works perfectly here. Here is the full build.xml I wrote for the test : project default=def basedir=. target name=def macrodef name=projectfiles attribute name=dir/ sequential exec dir=@{dir} executable=mvn.bat os=Windows XP arg line=--version/

[ANN] Maven DTDDoc Plugin 1.0 for Maven 2 released

2006-11-16 Thread Hervé BOUTEMY
The DTDDoc team is pleased to announce the release of the Maven DTDDoc Plugin, version 1.0 http://dtddoc.sourceforge.net/maven2/intro.html You can run mvn -U to get the latest version of the plugin, or specify the version in your project's plugin configuration: plugin

Re: Ant Maven Tasks

2007-03-07 Thread Hervé BOUTEMY
For people interested in Maven Tasks for Ant, MNG-2859 has been created. You can vote for it on http://jira.codehaus.org/browse/MNG-2859 Le mercredi 21 février 2007 15:39, Jason van Zyl a écrit : On 21 Feb 07, at 2:54 AM 21 Feb 07, Paul King wrote: Hi, I couldn't find any info regarding

Re: Ant Tasks for Maven and Mirrors

2007-11-16 Thread Hervé BOUTEMY
Le vendredi 16 novembre 2007, Jacob S. Barrett a écrit : I am having a problem using the Ant Tasks for Maven with a settings file including the following mirrors section. mirrors mirror idmirror/id mirrorOf*/mirrorOf nameMy Mirror/name

Re: Ant Tasks for Maven and Mirrors

2007-11-17 Thread Hervé BOUTEMY
, Hervé BOUTEMY a écrit : Le vendredi 16 novembre 2007, Jacob S. Barrett a écrit : I am having a problem using the Ant Tasks for Maven with a settings file including the following mirrors section. mirrors mirror idmirror/id mirrorOf*/mirrorOf nameMy

Re: ant tasks and pom properties

2007-11-20 Thread Hervé BOUTEMY
Le lundi 19 novembre 2007, Kevin Stembridge a écrit : Hi all, Is it possible for the ant tasks to read in arbitrary pom.xml properties? I'm not having any trouble getting at the normal properties that are part of the POM schema (project.version, project.build.directory etc) but I can't read

Re: antLib not producing same classpath as Mvn

2007-11-21 Thread Hervé BOUTEMY
Maven Ant Tasks should resolve dependencies exactly like Maven in command line. But there are code duplications between the command line usage of Maven internals and Ant tasks' usage: sometimes, this leads to unwanted differences. FYI, in Maven 2.1, a component has been created to avoid this

Re: ant tasks and pom properties

2007-11-23 Thread Hervé BOUTEMY
I opened a Jira issue about this: http://jira.codehaus.org/browse/MANTTASKS-101 and made the enhancement This will work in Maven Ant Tasks 2.0.8. Hervé Le mardi 20 novembre 2007, Hervé BOUTEMY a écrit : Le lundi 19 novembre 2007, Kevin Stembridge a écrit : Hi all, Is it possible

Re: Maven Ant Tasks: provided dependencies don't exclude trans

2007-12-02 Thread Hervé BOUTEMY
Hi Kevin, Strange question: the purpose of Maven Ant Tasks is specifically to get transitive dependency! :) But if that's really what you want, I see 2 ways of doing it: 1. use exclusions to exclude transitive dependencies you don't want dependency groupId=org.springframework artifactId=spring

Re: Ant tasks to deploy a jar

2007-12-13 Thread Hervé BOUTEMY
No problem here, it works as explained in http://maven.apache.org/ant-tasks.html. Can you send the Ant build fragment you're using? Hervé Le mercredi 12 décembre 2007, Paul Gier a écrit : Has anyone successfully deployed a jar file to a maven repository using the artifact:deploy ant task? I

Re: Using build number in Maven antlib?

2007-12-13 Thread Hervé BOUTEMY
Le jeudi 13 décembre 2007, Dees, Ian (GE Healthcare) a écrit : Is there a way to retrieve the Maven build number using the Maven antlib plugin? I'd like to append the build number to the file name for some of our Ant tasks. Thanks Ian

Fwd: [ANN] Maven Ant Tasks 2.0.8 Released

2007-12-17 Thread Hervé Boutemy
The Maven team is pleased to announce the release of the Maven Ant Tasks, version 2.0.8. You can find the binaries here: http://maven.apache.org/download.html You can find the release notes here: http://maven.apache.org/ant-tasks-release-notes.html Enjoy, -The Maven team

Re: Importing Maven Built Products into an ANT build

2008-01-21 Thread Hervé BOUTEMY
Hi Matthew, Your use case seems ideal for Maven Ant Tasks: instead of running 'mvn dependency:unpack-dependencies', you can add a target to your buildfile that use dependencies task, either with an external pom or dependencies declared directly in the buildfile. See

Re: Importing Maven Built Products into an ANT build

2008-01-23 Thread Hervé BOUTEMY
, Hervé BOUTEMY [EMAIL PROTECTED] wrote: Hi Matthew, Your use case seems ideal for Maven Ant Tasks: instead of running 'mvn dependency:unpack-dependencies', you can add a target to your buildfile that use dependencies task, either with an external pom or dependencies declared

Re: Importing Maven Built Products into an ANT build

2008-01-24 Thread Hervé BOUTEMY
Tasks Regards, Hervé Le jeudi 24 janvier 2008, Thomas Tardy a écrit : Are there tasks for clean, compile and test as well? How do I define properties used in the install task? E.g. -Dmaven.test.skip=true or a profile? Regards, Thomas On Jan 24, 2008 12:30 AM, Hervé BOUTEMY [EMAIL

Re: Maven Ant Tasks: Configured repository not available

2008-02-01 Thread Hervé BOUTEMY
Hi, Please provide ant -v output to let us understand what you mean by I get a validation error. Regards, Hervé Le vendredi 01 février 2008, Thomas Tardy a écrit : Does anybody have an idea why the maven ant tasks see the repository configured in the settings.xml during the later build

Re: Maven Ant Tasks: Configured repository not available

2008-02-02 Thread Hervé BOUTEMY
) at org.apache.tools.ant.Main.startAnt(Main.java:199) at org.apache.tools.ant.launch.Launcher.run(Launcher.java:257) at org.apache.tools.ant.launch.Launcher.main(Launcher.java:104) Total time: 1 second On Feb 2, 2008 12:37 AM, Hervé BOUTEMY [EMAIL PROTECTED] wrote: Hi, Please provide ant -v

Re: Maven Ant Tasks: Configured repository not available

2008-02-02 Thread Hervé BOUTEMY
ok, this one looks like a bug Please file a Jira issue. Le samedi 02 février 2008, Thomas Tardy a écrit : But even if I copy the repository configuration from the settings.xml to the pom it's not working. And in the pom it's not defined in a profile. On Feb 2, 2008 1:07 PM, Hervé BOUTEMY

Re: Maven Ant Tasks: Configured repository not available

2008-02-02 Thread Hervé BOUTEMY
samedi 02 février 2008, Thomas Tardy a écrit : Do you have any information about the http://jira.codehaus.org/browse/MANTTASKS-35. When will it be implemented? On Feb 2, 2008 1:07 PM, Hervé BOUTEMY [EMAIL PROTECTED] wrote: ok, I see. [artifact:pom] Using remote repositories: - id

Re: Bug within Maven ANT Tasks?

2008-03-10 Thread Hervé BOUTEMY
Le lundi 10 mars 2008, Matthew Tordoff a écrit : Hi all, It looks like this could have been fixed in 2.0.9 which introduces support for default profiles. I am guessing because I am defining my properties within a profile , this is why it is not being read by the Maven ANT tasks. I just put a

Re: Bug within Maven ANT Tasks?

2008-03-15 Thread Hervé BOUTEMY
Hi Matthew, Authentication defined in settings.xml is a supported feature: your problem is surprising. Can you attach your pom.xml, simplified as much as possible, and settings.xml (and strike your password, of course) to let me see? Can you send the ant -v output too? It should contain Using

Re: Coping w/ 3rd party libs ... jar plus dependencies.

2007-04-27 Thread Hervé BOUTEMY
Le vendredi 27 avril 2007 07:34, Danny MacMillan a écrit : Second, I think you might underestimate my newbishness. I'm pretty sure I can figure out how to get it installed. What I can't figure out is what to actually put in the POM. I know how to make a POM that creates a jar out of my own

Re: [Maven Ant Tasks] Can't load dependencies

2007-06-05 Thread Hervé BOUTEMY
No problem here with Maven Ant Tasks 2.0.6. What version of Maven Ant Tasks are you using? Result of execution is that artifact can't be loaded. What is the symptom? Could you provide the output? Does it happen only with commons-logging-1.0.1 or with any artifact? Le lundi 4 juin 2007, Oleg

Re: Ant tasks for Maven and java.net dependencies

2007-06-05 Thread Hervé BOUTEMY
Hi, I'm working on Maven Ant Tasks bugfixes and enhancements: I really need such feedback. But I'll need more info : - which version of Ant and Maven Ant Tasks - the build.xml you're using (and pom.xml if any) - which libs are missing If I'm able to reproduce the problem, I'll be able to work

Re: Ant tasks for Maven and java.net dependencies

2007-06-05 Thread Hervé BOUTEMY
at http://svn.castor.codehaus.org/browse/castor/castor/trunk/pom.xml?r=trunk Basically, it looks like the dependencies that are hosted on (any?) java.net repository are not downloaded and/or added. Regards Werner Hervé BOUTEMY wrote: Hi, I'm working on Maven Ant Tasks bugfixes

Re: NullPointer with maven-ant-tasks-2.0.6 (linux)

2007-06-19 Thread Hervé BOUTEMY
Hi, I'm working on these tasks under Linux without any problem. Can you run ant -d and give me the full stacktrace? Hervé Le mardi 19 juin 2007, Torsten Krall a écrit : Hi, I use following build.xml: project name=myproject default=complete basedir=.. xmlns:artifact=urn:maven-artifact-ant

Re: NullPointer with maven-ant-tasks-2.0.6 (linux)

2007-06-20 Thread Hervé BOUTEMY
) at org.apache.tools.ant.launch.Launcher.run(Launcher.java:257) at org.apache.tools.ant.launch.Launcher.main(Launcher.java:104) Total time: 4 seconds Regards, Torsten Krall Hervé BOUTEMY wrote: Hi, I'm working on these tasks under Linux without any problem. Can you run ant -d and give

Re: NullPointer with maven-ant-tasks-2.0.6 (linux)

2007-06-21 Thread Hervé BOUTEMY
I opened http://jira.codehaus.org/browse/MANTTASKS-75, with testcase and patch: it should be included in next Maven Ant Tasks version, 2.0.7, scheduled next week. Hervé Le jeudi 21 juin 2007, Hervé BOUTEMY a écrit : ok I think the problem in that your settings.xml file on your Linux machine

Re: [ANN] dependency-maven-plugin 1.0

2006-01-04 Thread Hervé BOUTEMY
(The following is a little off-topic for dependency-maven-plugin specifically, but I think it needs to be said.) For an experience Maven2 user, the value of these docs is immediately obvious. For the newbie, however, there is still the feeling: OK, so now what do I do. +1 (+2 if I

Re: NullPointerException while running mvn site:site

2006-01-05 Thread Hervé BOUTEMY
I confirm : svn has a fix (modified since the patch from MNG-1455) I built and installed the plugin locally, and it works nicely Le Jeudi 05 Janvier 2006 09:04, Bernd Bohmann a écrit : Hello, see http://jira.codehaus.org/browse/MNG-1455 but the patch was reverted. I think the

Re: [ANN] dependency-maven-plugin 1.0

2006-01-05 Thread Hervé BOUTEMY
a écrit : very good suggestion +1 for me also 2006/1/5, Hervé BOUTEMY [EMAIL PROTECTED]: (The following is a little off-topic for dependency-maven-plugin specifically, but I think it needs to be said.) For an experience Maven2 user, the value of these docs is immediately obvious

Re: NullPointerException while running mvn site:site

2006-01-06 Thread Hervé BOUTEMY
not understand what you are asking for... Le Vendredi 06 Janvier 2006 13:51, Dixit, Sandeep (ProSource Solutions) a écrit : Could you please send me your dependency tag for the plug-in? Thanks, Sandeep -Original Message- From: Hervé BOUTEMY [mailto:[EMAIL PROTECTED] Sent: Thursday

Re: [ANN] dependency-maven-plugin 1.0

2006-01-07 Thread Hervé BOUTEMY
by normal users : please vote for the issue... I'm looking forward to do the same addition to the About xxx plugin page Le Jeudi 05 Janvier 2006 22:04, Hervé BOUTEMY a écrit : ok, filed MPLUGIN-11 it contains a patch to add the text described to the plugin documentation report (even

Re: NullPointerException while running mvn site:site

2006-01-10 Thread Hervé BOUTEMY
: URL 'http://svn.apache.org/repos/asf/maven/components/trunk/maven-plugins/maven -plugin-plugin' doesn't exist Has the url changed? Thanks, Sandeep -Original Message- From: Hervé BOUTEMY [mailto:[EMAIL PROTECTED] Sent: Friday, January 06, 2006 1:55 PM To: Maven Users List

Re: NullPointerException while running mvn site:site

2006-01-10 Thread Hervé BOUTEMY
, Sandeep -Original Message- From: Hervé BOUTEMY [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 10, 2006 1:57 PM To: Maven Users List Subject: Re: NullPointerException while running mvn site:site whoops, why did I ask you to recompile maven-plugin-plugin since you're in trouble

[M1.1b2] problem with site generation : missing dependency

2006-01-19 Thread Hervé BOUTEMY
Maven site generation has been working well for a long time. But lately, I deleted my local repository, and now I can't generate my site any more : a dependency is missing : $ maven site:site __ __ | \/ |__ _Apache__ ___ | |\/| / _` \ V / -_) ' \ ~ intelligent projects ~ |_|

Re: downloading plug-ins from mojo (org.codehaus.mojo)?

2006-02-05 Thread Hervé BOUTEMY
it's jxr-maven-plugin, not maven-jxr-plugin : I did the same mistake some time ago... The convention is not the same between org.apache.maven.plugins (maven-xxx-plugin) and org.codehaus.mojo (xxx-maven-plugin). Jira http://jira.codehaus.org/browse/MPLUGIN-11 is an attempt to help newbies to

Re: downloading plug-ins from mojo (org.codehaus.mojo)?

2006-02-05 Thread Hervé BOUTEMY
, you don't need to put it in the pom. If it is in the pom incorrectly, then that will cause problems. I tested it on a random project with nothing in my pom for the plugin and it found it ok. -Original Message- From: Hervé BOUTEMY [mailto:[EMAIL PROTECTED] Sent: Sunday, February 05

Re: Using Maven Ant Tasks in a CI Environment with IBM Jazz

2008-04-08 Thread Hervé BOUTEMY
Le mardi 08 avril 2008, Jason van Zyl a écrit : Whatever operations are performed on our side that switches the classloader should switch it back. The analysis below doesn't really help us identify where this is happening, but Herve can probably take a look. It might be in the task code, or

[ANN] Maven Ant Tasks 2.0.9 Released

2008-04-17 Thread Hervé Boutemy
The Apache Maven team is pleased to announce the release of the Maven Ant Tasks, version 2.0.9. You can find the binaries here: http://maven.apache.org/download.html You can find the release notes here: http://maven.apache.org/ant-tasks-release-notes.html Enjoy, -The Apache Maven team

Re: [POLL] Default Value for File Encoding

2008-04-29 Thread Hervé BOUTEMY
+1 for a) with a warning like [WARN] using detected local platform encoding 'xxx'. To ensure build reproducibility, consider adding project.build.sourceEncoding property to your pom This won't break existing builds from users that don't even know their encoding, but will help them do the right

Re: maven ant task, copy local libs

2008-05-04 Thread Hervé BOUTEMY
Hi Roman, If I understand what you're trying to do, I'd say it's the same as the Declaring Dependencies section of the documentation: http://maven.apache.org/ant-tasks.html look at For example, to populate WEB-INF/lib with your dependencies you could use the following: If the doc is not

Re: Can't run ant task in maven 2.0.9

2008-05-04 Thread Hervé BOUTEMY
and give the exact version of the maven-antrun-plugin used Le dimanche 04 mai 2008, Brian E. Fox a écrit : Can you try to isolate this to the Ant task or Maven update? Ie don't update them both at the same time and see which one actually causes the breakage. -Original Message- From:

Re: maven ant task, copy local libs

2008-05-05 Thread Hervé BOUTEMY
yes, with pomRefId, it should work better: artifact:dependencies pomRefId=maven filesetId=dependency.fileset useScope=runtime/ Le lundi 05 mai 2008, roman schoenbichler a écrit : Ok sry.. how should it work with an empty artifact:dependencies So now he can resolve the dependencies... hope

Re: maven ant task, copy local libs

2008-05-06 Thread Hervé BOUTEMY
ok, if you don't want to use simple mapper type=flatten / but prefer the VersionMapper (to remove version from filenames), you need to add versionsId=dependency.versions to you dependencies task Hervé Le lundi 05 mai 2008, roman schoenbichler a écrit : Hervé BOUTEMY schrieb: Ok the archives

Re: maven ant task, copy local libs

2008-05-07 Thread Hervé BOUTEMY
=dependency.versions to you dependencies task Hervé Le lundi 05 mai 2008, roman schoenbichler a écrit : Hervé BOUTEMY schrieb: Ok the archives arn't build right, the libs arn't copied into the new archives I'm using the following lines: artifact:dependencies pomRefId=maven.project

Re: site problem with locale de

2008-05-12 Thread Hervé BOUTEMY
please open a Jira issue with a full testcase. This should be working... Hervé Le jeudi 08 mai 2008, Alexander Vaysberg a écrit : Hi, i try a simple site for maven with locale de, but i have a problem with special characters (like german umlaut etc.). the pom is: plugins plugin

Re: Unexpected element artifact:dependencies

2008-05-17 Thread Hervé BOUTEMY
yes, it seems like you are trying to use Maven Ant Tasks (maven-ant-tasks.jar) in an Ant build (build.xml) The doc is here: http://maven.apache.org/ant-tasks.html The tasks can be downloaded here: http://www.apache.org/dyn/closer.cgi/maven/binaries/maven-ant-tasks-2.0.9.jar Regards, Hervé Le

Re: Unexpected element artifact:dependencies

2008-05-18 Thread Hervé BOUTEMY
=1.2.14/ /artifact:dependencies . --- Hervé BOUTEMY [EMAIL PROTECTED] wrote: yes, it seems like you are trying to use Maven Ant Tasks (maven-ant-tasks.jar) in an Ant build (build.xml) The doc is here: http://maven.apache.org/ant-tasks.html The tasks can be downloaded here: http

next step for encoding support: reporting output files

2008-06-09 Thread Hervé Boutemy
Hi, After XML then source files, it's time now for the next step on encoding support: reporting output files. There is a new proposal to unify reporting encoding configuration and change default value to UTF-8: http://docs.codehaus.org/display/MAVEN/Reporting+Encoding+Configuration The change

[POLL] Default Value for Reports Output Encoding

2008-08-05 Thread Hervé BOUTEMY
Dear community, The Maven team is currently discussing a proposal about the future handling of reporting output file encoding by the various plugins, please see our wiki article [0] for all details. A controversial aspect of this proposal is which file encoding should be assumed in case the

Re: [POLL] Default Value for Reports Output Encoding

2008-08-06 Thread Hervé BOUTEMY
Le mardi 05 août 2008, Jochen Wiedmann a écrit : On Tue, Aug 5, 2008 at 9:43 PM, Hervé BOUTEMY [EMAIL PROTECTED] wrote: [a] Use UTF-8 [b] Use source files encoding [c] Platforms default encoding It would be part of the show for approach [b]. The effective encoding would be determined

Re: site plugin outputEncoding not working

2008-08-09 Thread Hervé BOUTEMY
Hi, This parameter works on my projects. What files are you looking into? FYI, this won't change encoding for every file generated in the site: some plugins write files on their own, without site plugin (javadoc, jxr, ...). There is currently a proposal for global Reporting Encoding

[RESULT] [POLL] Default Value for Reports Output Encoding

2008-08-12 Thread Hervé BOUTEMY
After one week, the result is: a) UTF-8: 4 votes on user list + 2 previously on dev list b) same as source: 2 votes on user list 1 vote for platform encoding Default encoding for reports will be UTF-8. Thanks for your participation. Regards, Hervé Le mardi 05 août 2008, Hervé BOUTEMY a écrit

Re: [Modello] xpp3 not writting an int of zero

2008-09-05 Thread Hervé BOUTEMY
see http://xircles.codehaus.org/projects/modello/lists regards, Hervé Le vendredi 05 septembre 2008, [EMAIL PROTECTED] a écrit : Which list would be more appropriate to post? I have some more question about how Modello is working, but I want to post to the correct list. Thanks, -Nate

Re: Release translation

2008-09-11 Thread Hervé BOUTEMY
Le mercredi 10 septembre 2008, Baptiste MATHUS a écrit : Hi all, Well, this is more a question to the french translation of release I just saw in the 2.1 of the project-info-reports:dependencies plugin. Release had been translated Dégagement in french, which seems inadequate imo. Moreover

Re: Maven site-plugin

2008-09-11 Thread Hervé BOUTEMY
Le jeudi 11 septembre 2008, Matthias Dorfner a écrit : Hey everybody, I’m very interested in using maven’s site-plugin for a project homepage including javadoc and several possibilities this plugin offers. There’s already an existing API with javadoc information. At first, my main goal is

Re: Specify text in Maven site generated pages

2008-09-12 Thread Hervé BOUTEMY
Le vendredi 12 septembre 2008, Junco Hueco a écrit : Hi all, I've been looking for how to change the text that appears in the generated html pages from the Maven site plugin, but I haven't found any information about this. Where are the templates or files used to generate each page

Re: maven ant tasks and remote repository in pom

2008-10-10 Thread Hervé BOUTEMY
Le vendredi 10 octobre 2008, will vuong a écrit : if i have a pom.xml that i refer to in my ant build.xml and that pom.xml declares a remote repo, does the maven ant task use the pom's remote repo? or do i also have to declare the remote repo inside the build.xml? thanks for the

Re: maven ant tasks and remote repository in pom

2008-10-10 Thread Hervé BOUTEMY
repositories containing an artifact: this is the first time someone reports this usage, then it is not really tested :) i'm going to try to write up a test case this weekend. please open a Jira with this test case and I'll investigate regards, Hervé Hervé BOUTEMY wrote: Le vendredi 10 octobre

Re: [2.0.10 RC] Please test

2008-11-15 Thread Hervé BOUTEMY
Le samedi 15 novembre 2008, Henrique Prange a écrit : Hi Brian, Brian E. Fox wrote: The version is correct but it does seem to have the wrong embedded version. There must be a property in the pom that the release plugin didn't update. yes, the release plugin din't update mavenVersion

Re: Ant Task - Build maven pom.xml

2009-02-10 Thread Hervé BOUTEMY
Hi, I thought Tim's reply didn't need any addition, but it seems that even the documentation is still not clear enough (multiple people did a lot of work on it, though...). Let's try to understand your problem, then improve the doc. Perhaps 2 examples will help us to understand each other. 1.

Re: Ant Task - Build maven pom.xml

2009-02-11 Thread Hervé BOUTEMY
a replacement to Maven CLI, to avoid exec executable=mvnarg * but having a wrapper doing some equivalent work. I really don't understand. Thanks once again for your great explanation. please help me improve the doc :) regards, Hervé regards Vikas Hervé BOUTEMY wrote: Hi, I thought Tim's

Re: XML encoding problems with Maven

2009-03-05 Thread Hervé BOUTEMY
FYI, the properties section is to avoid setting encoding individually in every plugin section: see [1] for more information. Can you give more code? Because with the little snippet you gave us, nobody can tell you what is wrong: at this point in code, there is no bytes but only chars, then no

Re: XML encoding problems with Maven

2009-03-05 Thread Hervé BOUTEMY
FYI, the properties section is to avoid setting encoding individually in every plugin section: see [1] for more information. Can you give more code? Because with the little snippet you gave us, nobody can tell you what is wrong: at this point in code, there is no bytes but only chars, then no

Re: Problem with maven-ant-tasks and https repository

2009-04-17 Thread Hervé BOUTEMY
please open a Jira issue with a sample simplified project to show the issue: I'll have a look regards, Hervé Le jeudi 16 avril 2009, Yury Kudryashov a écrit : Hello, I have an internal Maven repository that can only be accessed via HTTPS with authorization. I have setup everything in

Re: report encoding problem (doxia)

2009-09-03 Thread Hervé BOUTEMY
Hi, If you're writing your report, ie java code using Doxia API, you're writing Strings, without any encoding notion. Are you sure the content isn't broken before you send it to Doxia? Is your code accessible somewhere? Regards, Hervé Le jeudi 03 septembre 2009, javadevd...@googlemail.com a

Re: report encoding problem (doxia)

2009-09-04 Thread Hervé BOUTEMY
that properties files are effectively US-ASCII encoded (OK, so it's actually an 8 bit encoding... but most people get it wrong) and so you have to escape *all* unicode characters above code point 127 as \u -Stephen thanks, 2009/9/3 Hervé BOUTEMY herve.bout...@free.fr: Hi, If you're

Re: Maven Central Repository - Cleanup Efforts

2009-09-25 Thread Hervé BOUTEMY
Le vendredi 25 septembre 2009, Stephen Connolly a écrit : For me, High quality is that: /project/(?parent/)(groupId|artifactId|version) are valid and do not reference properties /project/dependencies is valid and if there are any properties defined they are defined within the pom or it's

Re: Maven Central Repository - Cleanup Efforts

2009-09-25 Thread Hervé BOUTEMY
Le vendredi 25 septembre 2009, Stephen Connolly a écrit : 2009/9/25 Albert Kurucz albert.kur...@gmail.com: The pure Maven repo should say: We honestly don't care which Maven plugin the people build with, as long as that plugin is already checked into here. And why people would prefer to

Re: Maven Central Repository - Cleanup Efforts

2009-09-26 Thread Hervé BOUTEMY
Le samedi 26 septembre 2009, Tamás Cservenák a écrit : I think we all need some clarification, since we all talk about quality (we all agreed upon the basic things unanimously). What is the quality of a maven repository (in general)? Can we measure it? Can we define it? A wiki page with

Re: Maven Central Repository - Cleanup Efforts

2009-09-26 Thread Hervé BOUTEMY
Le samedi 26 septembre 2009, Albert Kurucz a écrit : For the additional requirement, getting into the pure Maven repo (The best), I really meant: build-able. Me too, I don't really care what tool you use to build it as long as the tool is already checked in and you only use the attached

Re: Maven Central Repository - Cleanup Efforts

2009-09-26 Thread Hervé BOUTEMY
Le samedi 26 septembre 2009, Albert Kurucz a écrit : For the additional requirement, getting into the pure Maven repo (The best), I really meant: build-able. Me too, I don't really care what tool you use to build it as long as the tool is already checked in and you only use the attached

Re: Maven on z/OS

2009-10-20 Thread Hervé BOUTEMY
Hi Althen, I'm very interested with problems you're facing. We did a lot of work on encoding support for XML files, see [1]. But since I didn't find anybody using z/os, I wasn't able to check that everything was fixed. Now that you're here, I suppose I'll be able to work with you on last fixes:

Re: Maven on z/OS

2009-10-24 Thread Hervé BOUTEMY
'array out of range' I get for a number of commands, help:active-profiles, all-profiles.. I have as yet not raised a Jira. Do you still want me to do that ? Thanks Uli -Original Message- From: Hervé BOUTEMY [mailto:herve.bout...@free.fr] Sent: 20 October 2009 17:49 To: Maven Users

Re: Maven Ant Task

2010-02-17 Thread Hervé BOUTEMY
ok, it seems we have a problem with Ant 1.8.0: I opened a Jira issue http://jira.codehaus.org/browse/MANTTASKS-178 Need to investigate now... Regards, Hervé Le mercredi 17 février 2010, Tony2010 a écrit : Hi, I am using Maven Ant Task to call Maven Artifacts from Apache Ant (1.8). The

[ANN] Maven Skins parent version 5 and Maven Stylus Skin version 1.2 Released

2010-03-22 Thread Hervé Boutemy
The Maven team is pleased to announce the release of Maven Skins parent version 5 and Maven Stylus Skin version 1.2. http://maven.apache.org/skins/maven-stylus-skin/ You should specify the version in your project's site.xml configuration: project ... skin

  1   2   3   4   5   6   >