Author: artdaw
Date: 2008-10-14 11:08:28 -0400 (Tue, 14 Oct 2008)
New Revision: 10749
Modified:
trunk/docs/cdkguide/en/src/main/docbook/modules/overview.xml
trunk/docs/cdkguide/en/src/main/docbook/modules/setup.xml
Log:
https://jira.jboss.org/jira/browse/RF-3692 - 'Developer sample creation' is done
Modified: trunk/docs/cdkguide/en/src/main/docbook/modules/overview.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/docbook/modules/overview.xml 2008-10-14 14:45:03 UTC
(rev 10748)
+++ trunk/docs/cdkguide/en/src/main/docbook/modules/overview.xml 2008-10-14 15:08:28 UTC
(rev 10749)
@@ -11,7 +11,7 @@
</chapterinfo>
<title>Component usage overview</title>
<para>
- After the <emphasis
role="bold"><property><inputDate></property></emphasis>
component has been created syou could use it on a page.
+ After the <emphasis
role="bold"><property><inputDate></property></emphasis>
component has been created you could use it on a page.
Create a simple JSF project, called <property>myapp</property> for
example, with only one JSP page that has a form with our
<emphasis
role="bold"><property><inputDate></property></emphasis>
component.
</para>
Modified: trunk/docs/cdkguide/en/src/main/docbook/modules/setup.xml
===================================================================
--- trunk/docs/cdkguide/en/src/main/docbook/modules/setup.xml 2008-10-14 14:45:03 UTC (rev
10748)
+++ trunk/docs/cdkguide/en/src/main/docbook/modules/setup.xml 2008-10-14 15:08:28 UTC (rev
10749)
@@ -120,7 +120,7 @@
<listitem>
<para> Create a file named <property>pom.xml</property> in
the directory with the
following content: </para>
- <programlisting role="XML"><![CDATA[<?xml
version="1.0" encoding="UTF-8"?>
+ <programlisting id="project_pom"
role="XML"><![CDATA[<?xml version="1.0"
encoding="UTF-8"?>
<project
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
@@ -202,17 +202,27 @@
</thead>
<tbody>
<row>
- <entry> groupId </entry>
- <entry> Prefix for the Java package structure of your library
</entry>
+ <entry>groupId</entry>
+ <entry>Prefix for the Java package structure of your
library</entry>
</row>
<row>
- <entry> url </entry>
- <entry> Namespace for your library to be used in the TLD file
</entry>
+ <entry>url </entry>
+ <entry>Namespace for your library to be used in the TLD
file</entry>
</row>
<row>
- <entry> version </entry>
- <entry> Version of your library </entry>
+ <entry>version</entry>
+ <entry>Version of your library</entry>
</row>
+ <row>
+ <entry>scope</entry>
+ <entry>
+ Dependency scope is used to limit the transitivity of a depedency, and also to affect
the classpath used for various build tasks.
+ "Provided" scope indicates you expect the JDK or a container to
provide the dependency at runtime.
+ For example, when you build a web application with RichFaces,
+ you would set the dependency on the Servlet API and related libraries to scope
+ "provided" because the web container provides those classes.
+ </entry>
+ </row>
</tbody>
</tgroup>
</table>