Author: taylor
Date: Thu Jun 15 23:31:47 2017
New Revision: 1798889

URL: http://svn.apache.org/viewvc?rev=1798889&view=rev
Log:
Updating news for release of pluto archetypes 3.0.0

Modified:
    portals/site/pluto/src/site/xdoc/news.xml
    portals/site/pluto/src/site/xdoc/v30/getting-started.xml

Modified: portals/site/pluto/src/site/xdoc/news.xml
URL: 
http://svn.apache.org/viewvc/portals/site/pluto/src/site/xdoc/news.xml?rev=1798889&r1=1798888&r2=1798889&view=diff
==============================================================================
--- portals/site/pluto/src/site/xdoc/news.xml (original)
+++ portals/site/pluto/src/site/xdoc/news.xml Thu Jun 15 23:31:47 2017
@@ -27,6 +27,23 @@ limitations under the License.
   <body>
 
     <section name="News and Status">
+         <h4>27 April 2017 - Apache Pluto Archetype 3.0.0</h4>
+        <p>
+            The Apache Portals team is pleased to announce the General 
Availability of the Apache Pluto Archetypes for Pluto 3.0.0.
+            Two archetypes are available:
+            <ul>
+                <li>
+                The generic-portlet-archetype can be used to create an 
old-fashioned portlet project which has a class that extends GenericPortlet. 
+            </li>
+            <li>
+                The bean-portlet-archetype can be used to create a modern 
"bean portlet" that utilizes the Portlet 3.0 CDI features.
+            </li>
+        </ul>
+        </p>
+        <p>
+            Archetypes are available in Maven Central <a 
href="http://search.maven.org/#search%7Cga%7C1%7Cpluto%20archetype";>here.</a>
+        </p>
+
         <h4>12 January 2017 - Portals Pluto 3.0</h4>
         <p>
             The Apache Pluto project is proud to announce the General 
Availability release of Pluto 3.0.0.

Modified: portals/site/pluto/src/site/xdoc/v30/getting-started.xml
URL: 
http://svn.apache.org/viewvc/portals/site/pluto/src/site/xdoc/v30/getting-started.xml?rev=1798889&r1=1798888&r2=1798889&view=diff
==============================================================================
--- portals/site/pluto/src/site/xdoc/v30/getting-started.xml (original)
+++ portals/site/pluto/src/site/xdoc/v30/getting-started.xml Thu Jun 15 
23:31:47 2017
@@ -204,6 +204,43 @@ limitations under the License.
      </p>
    </section>
     
+<section name="Using the Pluto Maven Archetypes">
+    <p>
+      There are two Maven archetypes available to quickly get you started 
developing a portlet application.
+       <ul>
+            <li>generic-portlet-archetype
+            </li>
+            <li>
+              bean-portlet-archetype
+            </li>
+        </ul>
+    </p>
+    <p>
+        The generic-portlet-archetype can be used to create an old-fashioned 
portlet project which has a class that extends GenericPortlet. 
+        <source><![CDATA[
+mvn archetype:generate \
+    -DarchetypeGroupId=org.apache.portals.pluto.archetype \
+    -DarchetypeArtifactId=generic-portlet-archetype \
+    -DarchetypeVersion=3.0.0 \
+    -DgroupId=com.mycompany \
+    -DartifactId=com.mycompany.my.generic.portlet
+        ]]></source>
+    </p>
+    <p>
+        The bean-portlet-archetype can be used to create a modern "bean 
portlet" that utilizes the Portlet 3.0 CDI features.
+        <source><![CDATA[
+mvn archetype:generate \
+    -DarchetypeGroupId=org.apache.portals.pluto.archetype \
+    -DarchetypeArtifactId=bean-portlet-archetype \
+    -DarchetypeVersion=3.0.0 \
+    -DgroupId=com.mycompany \
+    -DartifactId=com.mycompany.my.generic.portlet
+        ]]></source>
+    </p>
+    <p>
+        Archetypes are available in Maven Central <a 
href="http://search.maven.org/#search%7Cga%7C1%7Cpluto%20archetype";>here.</a>
+    </p>     
+   </section>    
 </body>
   
 </document>


Reply via email to