vmassol 2004/02/24 11:50:53
Modified: ear/xdocs properties.xml
Log:
- use groupId/artifactId notation
- fixed typo in closing <type> tags (reported by Dave Brondsema)
Revision Changes Path
1.9 +10 -10 maven-plugins/ear/xdocs/properties.xml
Index: properties.xml
===================================================================
RCS file: /home/cvs/maven-plugins/ear/xdocs/properties.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- properties.xml 20 Feb 2004 04:49:07 -0000 1.8
+++ properties.xml 24 Feb 2004 19:50:53 -0000 1.9
@@ -63,9 +63,6 @@
${pom.id}
</td>
</tr>
-
-
-
</table>
</section>
<section name="other settings">
@@ -99,9 +96,10 @@
<source><![CDATA[
<dependency>
- <id>id</id>
+ <groupId>groupId</groupId>
+ <artifactId>ejbArtifactId</artifactId>
<version>aversion</version>
- <type>ejb<type>
+ <type>ejb</type>
<properties>
<ear.bundle>true</ear.bundle>
</properties>
@@ -115,9 +113,10 @@
</p>
<source><![CDATA[
<dependency>
- <id>your_war</id>
- <version>your_version</version>
- <type>war<type>
+ <groupId>groupId</groupId>
+ <artifactId>warArtifactId</artifactId>
+ <version>aversion</version>
+ <type>war</type>
<properties>
<ear.bundle>true</ear.bundle>
<ear.appxml.war.context-root>webapp</ear.appxml.war.context-root>
@@ -131,9 +130,10 @@
</p>
<source><![CDATA[
<dependency>
- <id>my-java-client</id>
+ <groupId>groupId</groupId>
+ <artifactId>jarArtifactId</artifactId>
<version>aversion</version>
- <type>jar<type>
+ <type>jar</type>
<properties>
<ear.module>true</ear.module>
</properties>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]