- use groupId/artifactId notation

- fixed typo in closing <type> tags (reported by Dave Brondsema)


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114741 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
vmassol
2004-02-24 19:50:53 +00:00
parent 9860fbe9fe
commit c7195a3af3

View File

@@ -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>