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
/ osgi / repositories Good idea. Did you have sample pom.xml for study ? Thanks Christophe 2009/1/29 Deneux, Christophe christophe.den...@capgemini.com: In your OSGI bundle project, you will use the maven-assembly-plugin to generate your OSGI bundle artifact (artifactId-version

RE : RE : maven / osgi / repositories

2009-01-29 Thread Deneux, Christophe
. 28/01/2009 18:04 À: Maven Users List Objet : Re: RE : maven / osgi / repositories 2009/1/28 Deneux, Christophe christophe.den...@capgemini.com: Isn't the role of the classifier field ? instead of : groupIdorg.apache.ant/groupId artifactIdant/artifactId version1.7.1/version we could use

RE : maven / osgi / repositories

2009-01-28 Thread Deneux, Christophe
Isn't the role of the classifier field ? instead of : groupIdorg.apache.ant/groupId artifactIdant/artifactId version1.7.1/version we could use : groupIdorg.apache.ant/groupId artifactIdant/artifactId version1.7.1/version classifierosgi/classifier De: Henri

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: Using ${} notation as a literal

2008-10-23 Thread Deneux, Christophe
, 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 resources [1] - escape mechanism for property

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

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/mapped directory to 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 check

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

2008-04-28 Thread Deneux, Christophe
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, 2008 at 4:16 PM, Deneux, Christophe [EMAIL PROTECTED] wrote

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

RE : Ojdbc Dependency Issue

2008-03-11 Thread Deneux, Christophe
Use com.oracle:ojdbc14:RDBMS-version 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

RE : Error when running dashboard-maven-plugin

2007-12-12 Thread Deneux, Christophe
. 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:persist on my project into Continuum. That's works

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 http://www.capgemini.com/

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

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: profile idjdk1.4/id activation jdk1.4/jdk /activation dependencyManagement ...

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

2007-09-05 Thread Deneux, Christophe
for target jre beeing 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 defined profile according

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

2007-09-05 Thread Deneux, Christophe
dependencies with scope provided in a plugin 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

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

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

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 repositories and/or pluginRepositories. Its URL is a file based

RE : Can Eclipse plugin generate checkstyle configur ation?

2007-05-29 Thread Deneux, Christophe
Hi Christophe, Have you try something like this: plugin artifactIdmaven-eclipse-plugin/artifactId groupIdorg.apache.maven.plugins/groupId version2.3/version configuration additionalBuildCommands buildcommand