Author: dennisl
Date: Sun Nov 19 07:59:10 2006
New Revision: 476840
URL: http://svn.apache.org/viewvc?view=rev&rev=476840
Log:
o Add FAQ.
Added:
maven/plugins/trunk/maven-ejb-plugin/src/site/fml/
maven/plugins/trunk/maven-ejb-plugin/src/site/fml/faq.fml (with props)
Modified:
maven/plugins/trunk/maven-ejb-plugin/src/site/site.xml
Added: maven/plugins/trunk/maven-ejb-plugin/src/site/fml/faq.fml
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-ejb-plugin/src/site/fml/faq.fml?view=auto&rev=476840
==============================================================================
--- maven/plugins/trunk/maven-ejb-plugin/src/site/fml/faq.fml (added)
+++ maven/plugins/trunk/maven-ejb-plugin/src/site/fml/faq.fml Sun Nov 19
07:59:10 2006
@@ -0,0 +1,53 @@
+<?xml version="1.0"?>
+
+<!--
+ ~ Copyright 2006 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.
+ -->
+
+<faqs id="FAQ" title="Frequently Asked Questions">
+ <part id="General">
+ <faq id="How can I specify a Class-Path: entry in the manifest of an EJB
jar?">
+ <question>How can I specify a Class-Path: entry in the manifest of an
EJB jar?</question>
+ <answer>
+ <p>
+ You just have to configure it:
+ <source>
+<project>
+ ...
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-ejb-plugin</artifactId>
+ ...
+ <configuration>
+ <archive>
+ <manifest>
+ <addClasspath>true</addClasspath>
+ </manifest>
+ </archive>
+ </configuration>
+ ...
+ </plugin>
+ </plugins>
+ </build>
+ ...
+</project>
+ </source>
+ </p>
+ </answer>
+ </faq>
+ </part>
+</faqs>
\ No newline at end of file
Propchange: maven/plugins/trunk/maven-ejb-plugin/src/site/fml/faq.fml
------------------------------------------------------------------------------
svn:eol-style = native
Modified: maven/plugins/trunk/maven-ejb-plugin/src/site/site.xml
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-ejb-plugin/src/site/site.xml?view=diff&rev=476840&r1=476839&r2=476840
==============================================================================
--- maven/plugins/trunk/maven-ejb-plugin/src/site/site.xml (original)
+++ maven/plugins/trunk/maven-ejb-plugin/src/site/site.xml Sun Nov 19 07:59:10
2006
@@ -24,7 +24,7 @@
<item name="Introduction" href="index.html"/>
<item name="Goals" href="plugin-info.html"/>
<item name="Usage" href="usage.html"/>
- <!-- item name="FAQ" href="faq.html"/ -->
+ <item name="FAQ" href="faq.html"/>
</menu>
<menu name="Examples">
<item name="Using the ejb client as a dependency"
href="examples/ejb-client-dependency.html"/>