Author: snicoll
Date: Sun Sep 25 00:48:20 2005
New Revision: 291386
URL: http://svn.apache.org/viewcvs?rev=291386&view=rev
Log:
MNG-852: Added web site doco for EJB plugin.
Added:
maven/components/trunk/maven-plugins/maven-ejb-plugin/src/site/
maven/components/trunk/maven-plugins/maven-ejb-plugin/src/site/apt/
maven/components/trunk/maven-plugins/maven-ejb-plugin/src/site/apt/howto.apt
maven/components/trunk/maven-plugins/maven-ejb-plugin/src/site/apt/introduction.apt
maven/components/trunk/maven-plugins/maven-ejb-plugin/src/site/site.xml
Added:
maven/components/trunk/maven-plugins/maven-ejb-plugin/src/site/apt/howto.apt
URL:
http://svn.apache.org/viewcvs/maven/components/trunk/maven-plugins/maven-ejb-plugin/src/site/apt/howto.apt?rev=291386&view=auto
==============================================================================
---
maven/components/trunk/maven-plugins/maven-ejb-plugin/src/site/apt/howto.apt
(added)
+++
maven/components/trunk/maven-plugins/maven-ejb-plugin/src/site/apt/howto.apt
Sun Sep 25 00:48:20 2005
@@ -0,0 +1,28 @@
+ ------
+ Maven 2 Ejb Plugin: configuration examples
+ ------
+ Stephane Nicoll
+ <[EMAIL PROTECTED]>
+ ------
+ September 25, 2005
+
+Introduction
+
+ The EJB plugin allows to package an EJB module. To generate the ejb-client
+ jar as well, you need to set the <generateClient> to true in the plugin's
+ configuration:
+
++--------
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-ejb-plugin</artifactId>
+ <configuration>
+ <generateClient>true</generateClient>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
++---------
+
Added:
maven/components/trunk/maven-plugins/maven-ejb-plugin/src/site/apt/introduction.apt
URL:
http://svn.apache.org/viewcvs/maven/components/trunk/maven-plugins/maven-ejb-plugin/src/site/apt/introduction.apt?rev=291386&view=auto
==============================================================================
---
maven/components/trunk/maven-plugins/maven-ejb-plugin/src/site/apt/introduction.apt
(added)
+++
maven/components/trunk/maven-plugins/maven-ejb-plugin/src/site/apt/introduction.apt
Sun Sep 25 00:48:20 2005
@@ -0,0 +1,17 @@
+ ------
+ Maven 2 Ejb Plugin
+ ------
+ Stephane Nicoll
+ <[EMAIL PROTECTED]>
+ ------
+ September 25, 2005
+
+Introduction
+
+ This plugin generates J2EE Enterprise Javabean (EJB) file as well as the
associated
+ client jar.
+
+ The full description of goals is available {{{index.html}here}}.
+
+
+
Added: maven/components/trunk/maven-plugins/maven-ejb-plugin/src/site/site.xml
URL:
http://svn.apache.org/viewcvs/maven/components/trunk/maven-plugins/maven-ejb-plugin/src/site/site.xml?rev=291386&view=auto
==============================================================================
--- maven/components/trunk/maven-plugins/maven-ejb-plugin/src/site/site.xml
(added)
+++ maven/components/trunk/maven-plugins/maven-ejb-plugin/src/site/site.xml Sun
Sep 25 00:48:20 2005
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!--
+/*
+ * Copyright 2001-2005 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.
+ */
+-->
+
+<project name="Maven Ejb Plugin">
+ <bannerLeft>
+ <name>Maven Ejb Plugin</name>
+ <src>http://maven.apache.org/images/apache-maven-project.png</src>
+ <href>http://maven.apache.org/</href>
+ </bannerLeft>
+ <bannerRight>
+ <src>http://maven.apache.org/images/maven-small.gif</src>
+ </bannerRight>
+ <body>
+ <links>
+ <item name="Maven 2" href="http://maven.apache.org/maven2/"/>
+ </links>
+
+ <menu name="Overview">
+ <item name="Introduction" href="introduction.html"/>
+ <item name="How to Use" href="howto.html"/>
+ </menu>
+ ${reports}
+ </body>
+</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]