From c9fa95a15afde6ffb8cc57c78a9848aec44575b5 Mon Sep 17 00:00:00 2001 From: dion Date: Fri, 7 May 2004 09:14:37 +0000 Subject: [PATCH] Document the eclipse.dependency property of the dependency element PR: MPECLIPSE-23 Obtained from: Miguel Griffa Submitted by: Miguel Griffa Reviewed by: dIon git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115197 13f79535-47bb-0310-9956-ffa450edef68 --- eclipse/xdocs/changes.xml | 3 +++ eclipse/xdocs/properties.xml | 43 +++++++++++++++++++++++++++--------- 2 files changed, 35 insertions(+), 11 deletions(-) diff --git a/eclipse/xdocs/changes.xml b/eclipse/xdocs/changes.xml index 7c19407b..719c281f 100644 --- a/eclipse/xdocs/changes.xml +++ b/eclipse/xdocs/changes.xml @@ -25,6 +25,9 @@ + + Document the eclipse.dependency property of the dependency element + Add maven.eclipse.buildcommands and maven.eclipse.projectnatures properties, docs and test cases diff --git a/eclipse/xdocs/properties.xml b/eclipse/xdocs/properties.xml index 23b6d672..e5075e41 100644 --- a/eclipse/xdocs/properties.xml +++ b/eclipse/xdocs/properties.xml @@ -33,17 +33,17 @@ maven.eclipse.workspace Yes - Location of the Eclipse - workspace that holds your configuration and source. -

- On Windows, this will be the workspace directory - under your eclipse installation. For example, if you installed - eclipse into c:\eclipse, the workspace is - c:\eclipse\workspace. -

-

- If this parameter is specified, the - external-tools goal will use it as the destination to copy the generated file. + Location of the Eclipse + workspace that holds your configuration and source. +

+ On Windows, this will be the workspace directory + under your eclipse installation. For example, if you installed + eclipse into c:\eclipse, the workspace is + c:\eclipse\workspace. +

+

+ If this parameter is specified, the + external-tools goal will use it as the destination to copy the generated file.

@@ -107,5 +107,26 @@ MAVEN_REPO that points to your local Maven repository.

+
+

+ The dependencies defined in the POM need not to be jars strictly. They can + be projects in the eclipse workspace. If a dependency is an eclipse project + a property needs to be added to that dependency to indicate so. +

+ + group + artifact + version + + true + + +]]> +

+ This indicates that the dependency is another project in the workspace. + Note that the name of the referenced project is the artifactId. +

+