RE : Upload request opensymphony quartz 1.6.4

2009-02-11 Thread Deneux, Christophe
To have an artifact uploaded, you should follow the following guide: http://maven.apache.org/guides/mini/guide-central-repository-upload.html, section "Manual upload of artifacts" ___ Christophe DENEUX / Capgemini Sud /

RE : RE : RE : maven / osgi / repositories

2009-01-30 Thread Deneux, Christophe
s List Objet : Re: RE : RE : maven / osgi / repositories Good idea. Did you have sample pom.xml for study ? Thanks Christophe 2009/1/29 Deneux, Christophe : > In your OSGI bundle project, you will use the maven-assembly-plugin to > generate your OSGI bundle artifact (artifac

RE : RE : maven / osgi / repositories

2009-01-29 Thread Deneux, Christophe
l awareness. De: Henri Gomez [mailto:henri.go...@gmail.com] Date: mer. 28/01/2009 18:04 À: Maven Users List Objet : Re: RE : maven / osgi / repositories 2009/1/28 Deneux, Christophe : > Isn't the role of the "classifier" field ? > > in

RE : Release plugin development.

2009-01-28 Thread Deneux, Christophe
As explain in the settings references, env variable are used with the prefix "env", otherwise it's considered as a property. For example, ${env.PATH} contains the $path environment variable. Have you try ? I'm not sure that this will fix your problem, but I'm using the same mirror declaration,

RE : maven / osgi / repositories

2009-01-28 Thread Deneux, Christophe
Isn't the role of the "classifier" field ? instead of : org.apache.ant ant 1.7.1 we could use : org.apache.ant ant 1.7.1 osgi De: Henri Gomez [mailto:henri.go...@gmail.com] Date: mar. 27/01/2009 23:00 À: Maven Users List Objet : Re: maven / osgi / repositori

RE: Using ${} notation as a literal

2008-10-23 Thread Deneux, Christophe
On Mon, Oct 20, 2008 at 9:42 AM, Deneux, Christophe < [EMAIL PROTECTED]> wrote: > No escaping mechanism exists. See > http://jira.codehaus.org/browse/MNG-3558 > Does the escaping mechanism in the new resource plugin work for this as well? "New features : - New mojo to copy r

RE: Using ${} notation as a literal

2008-10-20 Thread Deneux, Christophe
No escaping mechanism exists. See http://jira.codehaus.org/browse/MNG-3558 ___ Christophe DENEUX / Capgemini Sud / Méditerranée Integration Architect / OW2 PEtALS Commiter Tel: + 33 - -- -- -- -- / www.capgemini.com Por

RE : Upload jar to remote central repository

2008-05-20 Thread Deneux, Christophe
Caution using the scp protocol. I think that the path of your URL will be the following filesystem path: "/home/myUser/maven/repository". And I think that this directory does not exist. You should use an SCP URL as: "scp://myserver.com/http://myserver.com/maven/repository> ___

RE : Dependency licenses

2008-05-19 Thread Deneux, Christophe
Hi James, Your plugin is very interresting. Please, can you add the following features: - In the goal "download", can you add a parameter to exclude all dependencies that are not in the final package (all dependencies where the scope is "provided" or "test") - Can you add a new goal to ch

RE : How to escape the substitution of properties in P OM file

2008-04-28 Thread Deneux, Christophe
this email unless absolutely necessary. Capgemini encourages environmental awareness. De: Wendy Smoak [mailto:[EMAIL PROTECTED] Date: lun. 28/04/2008 10:57 À: Maven Users List Objet : Re: How to escape the substitution of properties in POM file On Mon, Apr 28, 20

RE : [2.0.9 RC6] Release Candidate testing

2008-04-02 Thread Deneux, Christophe
+1, no problem to build my projects -- Christophe De: Martin Hoeller [mailto:[EMAIL PROTECTED] Date: mer. 02/04/2008 09:06 À: users@maven.apache.org Objet : Re: [2.0.9 RC6] Release Candidate testing On 01 Apr 2008, Brian E. Fox wrote: > I didn't get much

RE: docbkx and XInclude

2008-03-26 Thread Deneux, Christophe
Have you activated the Xinclude support in the docbkx maven plugin (see http://docs.codehaus.org/display/MAVENUSER/Docbkx+Maven+Plugin, example 9) ? ___ Christophe DENEUX / Capgemini Sud / Méditerranée Integration Arc

RE : Ojdbc Dependency Issue

2008-03-11 Thread Deneux, Christophe
Use com.oracle:ojdbc14: instead of ojdbc:ojdbc:14 because ojdbc14 is different according to your Oracke RDBMS version ___ Christophe DENEUX / Capgemini Sud / Méditerranée Technical Leader Tel: + 33 4 93 95 55 92 / www.c

RE : Error when running dashboard-maven-plugin

2007-12-12 Thread Deneux, Christophe
ole log as attachment. moreover, could you detail your config as : - maven version - JDK version - used database and version - Continuum version Best regards David Deneux, Christophe wrote: > > > Hi all, > > > I have the following error when running dashboard-maven-plugin

Error when running dashboard-maven-plugin

2007-12-06 Thread Deneux, Christophe
Hi all, I have the following error when running dashboard-maven-plugin:persist on my project into Continuum. That's works fine on the command line. Can someone help me ? The plugin version used is: 1.0-20070907.172709-15 [INFO] ---

RE : Code Complexity Plugin

2007-09-10 Thread Deneux, Christophe
Take an eye to javancss plugin: http://mojo.codehaus.org/javancss-maven-plugin/ ___ Christophe DENEUX / Capgemini Sud / Méditerranée Technical Leader Tel: + 33 4 93 95 55 92 / www.capgemini.com

RE : How to get dependencies with scope "provided" in a plugin

2007-09-05 Thread Deneux, Christophe
Take a look at the dependency plugin. There are some artifact filters that work on scope. These are being moved to a common location so that plugin developers can use them. -Original Message- From: Deneux, Christophe [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 05, 2007 3:2

RE : RE : how to declare a dependency that depends o f target JRE ?

2007-09-05 Thread Deneux, Christophe
ng 1.3 or 1.4. I don't want to change my JAVA_HOME evey time I start a new project, and maven2 requires Java 1.4 so this strategy cannot be used to build projects that target Java 1.3. Nico. 2007/9/5, Deneux, Christophe <[EMAIL PROTECTED]>: > > > Nicolas, > > You can def

RE : how to declare a dependency that depends of targe t JRE ?

2007-09-05 Thread Deneux, Christophe
Nicolas, You can defined profile according to the used JDK. In these profile you should defined a dependencyManagement in which you define your artifact version to use: jdk1.4 1.4 ... ___

How to get dependencies with scope "provided" in a plugin

2007-09-05 Thread Deneux, Christophe
Hi all, I'm writting a maven plugin. I have a goal running on the phase "pre-integration-test". For a continuous integration context, in this goal, I want to deploy external artefacts, available on a repository, so they are marked as provided in the section "dependencies" of the current proj

How to get dependencies with scope "provided" in a plugin

2007-09-04 Thread Deneux, Christophe
Hi all, I'm writting a maven plugin. I have a goal running on the phase "pre-integration-test". For a continuous integration context, in this goal, I want to deploy external artefacts, available on a repository, so they are marked as provided in the section "dependencies" of the current proj

RE : [M2] mvn-qalab-plugin: qalab.xml

2007-06-26 Thread Deneux, Christophe
qalab.xml is the database used my the qalab plugin to store the project history about some information (see the qualab documentation). So, it should not be deleted on a "mvn clean". You don't need to check it in your scm.

RE : Maven plugin DocBook Doclet

2007-06-18 Thread Deneux, Christophe
Hi Christian, Do you know the doclet "dbdoclet" (http://www.michael-a-fuchs.de/) ? I think that you can use this doclet inside your maven-javadoc-plugin configuration to generate the DocBook XML associated to your Javadoc. An example of doclet usage in maven-javadoc-plugin is available at ht

RE : How-to use a lib directory instead of the reposit ory

2007-06-01 Thread Deneux, Christophe
Hi, To do that, you must use a private repository. A private repository has the same directory tree than your local repository ($HOME/.me/repository), and is located in your project. It is declared in your pom into the section and/or . Its URL is a file based URL. Moreover, in a multomodule

RE : Can Eclipse plugin generate checkstyle configur ation?

2007-05-29 Thread Deneux, Christophe
Hi Christophe, Have you try something like this: maven-eclipse-plugin org.apache.maven.plugins 2.3 com.atlassw.tools.eclipse.checkstyle.CheckstyleBuilder com.atlassw.tools.eclipse.checkstyle.CheckstyleNature