maven-plugins/jdeveloper/xdocs/properties.xml
evenisse 85df922d35 Update to ASL v.2
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114795 13f79535-47bb-0310-9956-ffa450edef68
2004-03-04 18:40:25 +00:00

94 lines
3.0 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
/*
* Copyright 2001-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<document>
<properties>
<title>JDeveloper Plugin Properties</title>
<author email="toby-wan-kenobi@web.de">Tobias Rademacher</author>
</properties>
<body>
<section name="JDeveloper Maven-Plugin Settings">
<table>
<tr><th>Property</th><th>Optional?</th><th>Description</th></tr>
<tr>
<td>maven.jdeveloper.workspache</td>
<td>Yes</td>
<td>
<p>
The workspache to which your project belongs. This is used
to generate J2EE-Webapp names.
</p>
</td>
</tr>
<tr>
<td>maven.jdeveloper.relative.path</td>
<td>No</td>
<td>
<p>
Stupidly JDeveloper access dependency JAR files with a realtive path.
This path points to your $MAVE_HOME directory relative from your
JDeveloper Installation directory. Normaly this look like <code>../../</code>
or similar depending where you have installed maven and the JDeveloper IDE.
</p>
<p>
The complete path of a depending JAR is generate with:
</p>
<ol>
<li>maven.jdeveloper.relative.path</li>
<li>maven.jdeveloper.maven.home</li>
<li>repository information</li>
</ol>
</td>
</tr>
<tr>
<td>maven.jdeveloper.maven.home</td>
<td>No</td>
<td>
<p>
The name of your $MAVEN_HOME directory for instance <code>maven-1.0-beta-7</code>
</p>
<p>
The complete path of a depending JAR is generate with:
</p>
<ol>
<li>maven.jdeveloper.relative.path</li>
<li>maven.jdeveloper.maven.home</li>
<li>repository information</li>
</ol>
</td>
</tr>
<tr>
<td>maven.war.final.name</td>
<td>Yes</td>
<td>
<p>
The name of the Web Applicaion (if it is a web app).
</p>
</td>
</tr>
</table>
<p>
A good place to set this property is the <code>build.propeties</code> file in <code>user.home</code> directory.
</p>
</section>
</body>
</document>