From richfaces-svn-commits at lists.jboss.org Tue Jul 8 11:01:24 2008 Content-Type: multipart/mixed; boundary="===============3564652575183063064==" MIME-Version: 1.0 From: richfaces-svn-commits at lists.jboss.org To: richfaces-svn-commits at lists.jboss.org Subject: [richfaces-svn-commits] JBoss Rich Faces SVN: r9454 - trunk/docs/cdkguide/en/src/main/docbook/modules. Date: Tue, 08 Jul 2008 11:01:24 -0400 Message-ID: --===============3564652575183063064== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Author: artdaw Date: 2008-07-08 11:01:24 -0400 (Tue, 08 Jul 2008) New Revision: 9454 Modified: trunk/docs/cdkguide/en/src/main/docbook/modules/roadmap.xml trunk/docs/cdkguide/en/src/main/docbook/modules/setup.xml Log: http://jira.jboss.com/jira/browse/RF-3692 - 'Setting up the environment' se= ction was added Modified: trunk/docs/cdkguide/en/src/main/docbook/modules/roadmap.xml =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- trunk/docs/cdkguide/en/src/main/docbook/modules/roadmap.xml 2008-07-08 = 14:58:16 UTC (rev 9453) +++ trunk/docs/cdkguide/en/src/main/docbook/modules/roadmap.xml 2008-07-08 = 15:01:24 UTC (rev 9454) @@ -11,7 +11,7 @@ = Roadmap document - This document is aimed to describe components development with = + This document is aimed to describe components development with the Component Development Kit (CDK) and its featu= res. Modified: trunk/docs/cdkguide/en/src/main/docbook/modules/setup.xml =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- trunk/docs/cdkguide/en/src/main/docbook/modules/setup.xml 2008-07-08 14= :58:16 UTC (rev 9453) +++ trunk/docs/cdkguide/en/src/main/docbook/modules/setup.xml 2008-07-08 15= :01:24 UTC (rev 9454) @@ -11,10 +11,158 @@ = Setting up the environment - To start working with the project, it's necessary to have Maven inst= alled. + In order to start working with the Component Development= Kit (CDK) + and to create your rich component, = + it's necessary to have the following installed: - - JDK 1.5 - = - + + + + The Java SE 5 Development Kit (JDK) + = + + + + Apach= e Maven 2.0.9 + = + + + + Apache Tomcat 6.0<= /ulink> + = + + + + Browser (on client side) + = + + + + After the Maven is installed you should confi= gure it. = + In this case, please, go to the directory where you've just i= nstalled Maven, + open a conf/settings.xml file for editing and= add to the profiles + section this code: + + + cdk + + + + true + + + false + never + + repository.jboss.com + Jboss Repository for Maven + http://repository.jboss.com/maven2/ + default + + + + + maven.jboss.org + JBoss Repository for Maven Snapshots + http://snapshots.jboss.org/maven2/ + + false + + + true + always + + + + + true + + + false + never + + repository.jboss.com + Jboss Repository for Maven + http://repository.jboss.com/maven2/ + default + + + +...]]> + + + In order to activate new profile, please, add the following after = the profiles section: + + + cdk + +...]]> + + + Note: + + In order to work with Maven from Eclipse, = + it's possible to download and install the Maven= plugin. = + Please, follow the instruction at = + Ecl= ipse plugins for Maven page + + + + The environment is set up now to use the Component Devel= opment Kit (CDK). + = + + We are going to create two components throughout the RichFaces CDK= Developer Guide, but at first = + you need take the following steps in order to set up the Project and create your library: = + + + + + Create a new directory where all the components will be st= ored (for example Sandbox). = + + + + + Create a file named pom.xml in the di= rectory with the following content: + + + + 4.0.0 + org.mycompany + mylib-parent + http://mycompany.org + 1.0-SNAPSHOT + pom + + + javax.servlet + servlet-api + 2.4 + provided + + + javax.servlet + jsp-api + 2.0 + provided + + + org.richfaces.ui + richfaces-ui + 3.1.0 + + + +...]]> + + = + + = + = + = \ No newline at end of file --===============3564652575183063064==--