Author: buildbot
Date: Tue Nov 18 00:19:54 2014
New Revision: 929589
Log:
Production update by buildbot for tapestry
Modified:
websites/production/tapestry/content/cache/main.pageCache
websites/production/tapestry/content/dependencies-tools-and-plugins.html
Modified: websites/production/tapestry/content/cache/main.pageCache
==============================================================================
Binary files - no diff available.
Modified:
websites/production/tapestry/content/dependencies-tools-and-plugins.html
==============================================================================
--- websites/production/tapestry/content/dependencies-tools-and-plugins.html
(original)
+++ websites/production/tapestry/content/dependencies-tools-and-plugins.html
Tue Nov 18 00:19:54 2014
@@ -48,19 +48,13 @@
</div></div>
<div id="top">
-<div id="smallbanner"><div class="searchbox" style="float:right;margin: .3em
1em .1em 1em">
-<p>
-<span style="color: #999; font-size: 90%">Tapestry docs, issues, wikis &
blogs:</span>
-</p><form enctype="application/x-www-form-urlencoded" method="get"
action="http://tapestry.apache.org/search.html">
+<div id="smallbanner"><div class="searchbox" style="float:right;margin: .3em
1em .1em 1em"><span style="color: #999; font-size: 90%">Tapestry docs, issues,
wikis & blogs:</span>
+<form enctype="application/x-www-form-urlencoded" method="get"
action="http://tapestry.apache.org/search.html">
<input type="text" name="q">
<input type="submit" value="Search">
</form>
-</div>
-
-<div class="emblem" style="float:left"><a shape="rect" href="index.html"><img
class="confluence-embedded-image"
src="https://cwiki.apache.org/confluence/download/attachments/21791252/tapestry_s.png?version=3&modificationDate=1293093635000&api=v2"
data-image-src="/confluence/download/attachments/21791252/tapestry_s.png?version=3&modificationDate=1293093635000&api=v2"></a></div>
-<div class="title" style="float:left; margin: 0 0 0 3em">
-<h1 id="SmallBanner-PageTitle">Dependencies, Tools and Plugins</h1></div></div>
+</div><div class="emblem" style="float:left"><p><a shape="rect"
href="index.html"><img class="confluence-embedded-image
confluence-external-resource"
src="http://tapestry.apache.org/images/tapestry_small.png"
data-image-src="http://tapestry.apache.org/images/tapestry_small.png"></a></p></div><div
class="title" style="float:left; margin: 0 0 0 3em"><h1
id="SmallBanner-PageTitle">Dependencies, Tools and Plugins</h1></div></div>
<div class="clearer"></div>
</div>
@@ -80,51 +74,7 @@ table.ScrollbarTable td.ScrollbarParent
table.ScrollbarTable td.ScrollbarNextName {text-align: right;border: none;}
table.ScrollbarTable td.ScrollbarNextIcon {text-align: center;width:
16px;border: none;}
-/*]]>*/</style><div class="Scrollbar"><table class="ScrollbarTable"><tr><td
colspan="1" rowspan="1" class="ScrollbarPrevName" width="33%"> </td><td
colspan="1" rowspan="1" class="ScrollbarParent" width="33%"><sup><a
shape="rect" href="tapestry-tutorial.html"><img align="middle" border="0"
src="https://cwiki.apache.org/confluence/images/icons/up_16.gif" width="8"
height="8"></a></sup><a shape="rect" href="tapestry-tutorial.html">Tapestry
Tutorial</a></td><td colspan="1" rowspan="1" class="ScrollbarNextName"
width="33%"> <a shape="rect"
href="creating-the-skeleton-application.html">Creating The Skeleton
Application</a></td><td colspan="1" rowspan="1" class="ScrollbarNextIcon"><a
shape="rect" href="creating-the-skeleton-application.html"><img align="middle"
border="0" src="https://cwiki.apache.org/confluence/images/icons/forwd_16.gif"
width="16" height="16"></a></td></tr></table></div>
-
-<p>As much as we would like to dive into Tapestry right now, we must first
talk about setting up your development environment. The joy and the pain of
Java development is the volume of choice available. There's just a bewildering
number of JDKs, IDEs and other TLAs (Three Letter Acronyms) out there.</p>
-
-<p>Let's talk about a stack of tools, all open source and freely available,
that you'll need to setup. Likely you have some of these, or some version of
these, already on your development machine.</p>
-
-<h1 id="Dependencies,ToolsandPlugins-JDK1.5orNewer">JDK 1.5 or Newer</h1>
-
-<p>Tapestry 5 makes use of features of Java Development Kit (JDK) version 1.5.
This includes Java annotations, and a little bit of Java generics. JDK 1.6
works fine too.</p>
-
-<h1 id="Dependencies,ToolsandPlugins-EclipseIDE">Eclipse IDE</h1>
-
-<p>For this tutorial we'll assume you're using Eclipse as your Integrated
Development Environment (IDE). Eclipse is a popular IDE, but feel free to adapt
these instructions to IntelliJ, NetBeans, or any other.</p>
-
-<p>Eclipse comes in various flavors, and includes a reasonable XML editor
built-in. It can be <a shape="rect" class="external-link"
href="http://www.eclipse.org/downloads/" >downloaded from the eclipse.org web
site</a>. We recommend the Eclipse IDE for Java Developers, version 3.7
("Indigo") or newer.</p>
-
-<h1 id="Dependencies,ToolsandPlugins-Jetty">Jetty</h1>
-
-<p>Jetty is an open source servlet container created by Greg Wilkins of
Webtide (which offers commercial support for Jetty). Jetty is high performance
and designed for easy embedding in other software.</p>
-
-<h1 id="Dependencies,ToolsandPlugins-RunJettyRunEclipsePlugin">RunJettyRun
Eclipse Plugin</h1>
-
-<p><a shape="rect" class="external-link"
href="http://code.google.com/p/run-jetty-run/" >RunJettyRun</a> is a very
simple Eclipse plugin that bundles a version of Jetty (Jetty 6 at this writing)
so that you can create Eclipse launches that start Jetty to execute your web
application.</p>
-
-<p>You can install RunJettyRun using Eclipse's <em>Install New
Software...</em> menu item; the update URL is <a shape="rect"
class="external-link"
href="http://run-jetty-run.googlecode.com/svn/trunk/updatesite"
>http://run-jetty-run.googlecode.com/svn/trunk/updatesite</a>.</p>
-
-<p>This tutorial was written with RunJettyRun version 1.3.1.</p>
-
-<h1 id="Dependencies,ToolsandPlugins-ApacheMaven3">Apache Maven 3</h1>
-
-<p>Maven is a software build tool of rather epic ambitions. It has a very
sophisticated plugin system that allows it to do virtually anything, though
compiling Java code, building WAR and JAR files, and creating reports and web
sites are its forte.</p>
-
-<p>Perhaps the biggest advantage of Maven over, say, Ant, is that it can
download project dependencies (such as the Tapestry JAR files, and the JAR
files Tapestry itself depends on) automatically for you, from one of several
central repositories.</p>
-
-<p>Maven is not essential for using Tapestry, but is especially helpful when
performing the initial setup of a Tapestry application.</p>
-
-<p>Maven is available from <a shape="rect" class="external-link"
href="http://maven.apache.org/download.html">http://maven.apache.org/download.html</a>.</p>
-
-<p>There are plugins available for Eclipse, such as <a shape="rect"
class="external-link" href="http://eclipse.org/m2e/" >m2e</a>, but for
simplicity's sake we won't use those here; instead, we'll use Maven to generate
Eclipse control files for us.</p>
-
-<h1 id="Dependencies,ToolsandPlugins-Tapestry">Tapestry</h1>
-
-<p>You should not have to download this directly; as we'll see, Maven should
take care of downloading Tapestry, and its dependencies, as needed.</p>
-
-<style type="text/css">/*<![CDATA[*/
+/*]]>*/</style><div class="Scrollbar"><table class="ScrollbarTable"><tr><td
colspan="1" rowspan="1" class="ScrollbarPrevName" width="33%"> </td><td
colspan="1" rowspan="1" class="ScrollbarParent" width="33%"><sup><a
shape="rect" href="tapestry-tutorial.html"><img align="middle" border="0"
src="https://cwiki.apache.org/confluence/images/icons/up_16.gif" width="8"
height="8"></a></sup><a shape="rect" href="tapestry-tutorial.html">Tapestry
Tutorial</a></td><td colspan="1" rowspan="1" class="ScrollbarNextName"
width="33%"> <a shape="rect"
href="creating-the-skeleton-application.html">Creating The Skeleton
Application</a></td><td colspan="1" rowspan="1" class="ScrollbarNextIcon"><a
shape="rect" href="creating-the-skeleton-application.html"><img align="middle"
border="0" src="https://cwiki.apache.org/confluence/images/icons/forwd_16.gif"
width="16" height="16"></a></td></tr></table></div><p>As much as we would like
to dive into Tapestry right now, we must first talk about settin
g up your development environment. The joy and the pain of Java development is
the volume of choice available. There's just a bewildering number of JDKs, IDEs
and other TLAs (Three Letter Acronyms) out there.</p><p>Let's talk about a
stack of tools, all open source and freely available, that you'll need to
setup. Likely you have some of these, or some version of these, already on your
development machine.</p><h1 id="Dependencies,ToolsandPlugins-JDK1.5orNewer">JDK
1.5 or Newer</h1><p>Tapestry 5 makes use of features of Java Development Kit
(JDK) version 1.5. This includes Java annotations, and a little bit of Java
generics. JDK 1.6 and JDK 1.7 work fine too.</p><h1
id="Dependencies,ToolsandPlugins-EclipseIDE">Eclipse IDE</h1><p>For this
tutorial we'll assume you're using Eclipse as your Integrated Development
Environment (IDE). Eclipse is a popular IDE, but feel free to adapt these
instructions to IntelliJ, NetBeans, or any other.</p><p>Eclipse comes in
various flavors, and includes
a reasonable XML editor built-in. It can be <a shape="rect"
class="external-link" href="http://www.eclipse.org/downloads/" >downloaded from
the eclipse.org web site</a>. We recommend the latest version of Eclipse IDE
for Java Developers (but anything from version 3.7 onward should work
fine).</p><h1 id="Dependencies,ToolsandPlugins-Jetty">Jetty</h1><p>Jetty is an
open source servlet container created by Greg Wilkins of Webtide (which offers
commercial support for Jetty). Jetty is high performance and designed for easy
embedding in other software.</p><h1
id="Dependencies,ToolsandPlugins-RunJettyRunEclipsePlugin">RunJettyRun Eclipse
Plugin</h1><p><a shape="rect" class="external-link"
href="http://code.google.com/p/run-jetty-run/" >RunJettyRun</a> is a very
simple Eclipse plugin that bundles a version of Jetty (Jetty 6 at this writing)
so that you can create Eclipse launches that start Jetty to execute your web
application.</p><p>You can install RunJettyRun using Eclipse's <em>Install
New Software...</em> menu item; the update URL is <a shape="rect"
class="external-link"
href="http://run-jetty-run.googlecode.com/svn/trunk/updatesite"
>http://run-jetty-run.googlecode.com/svn/trunk/updatesite</a>.</p><p>This
tutorial was written with RunJettyRun version 1.3.1.</p><h1
id="Dependencies,ToolsandPlugins-ApacheMaven3">Apache Maven 3</h1><p>Maven is a
software build tool of rather epic ambitions. It has a very sophisticated
plugin system that allows it to do virtually anything, though compiling Java
code, building WAR and JAR files, and creating reports and web sites are its
forte.</p><p>Perhaps the biggest advantage of Maven over, say, Ant, is that it
can download project dependencies (such as the Tapestry JAR files, and the JAR
files Tapestry itself depends on) automatically for you, from one of several
central repositories.</p><p>Maven is not essential for using Tapestry, but is
especially helpful when performing the initial setup of a Tapestry
application.</p><p>Mave
n is available from <a shape="rect" class="external-link"
href="http://maven.apache.org/download.html">http://maven.apache.org/download.html</a>.</p><p>There
are plugins available for Eclipse, such as <a shape="rect"
class="external-link" href="http://eclipse.org/m2e/" >m2e</a>, but for
simplicity's sake we won't use those here; instead, we'll use Maven to generate
Eclipse control files for us.</p><h1
id="Dependencies,ToolsandPlugins-Tapestry">Tapestry</h1><p>You should not have
to download this directly; as we'll see, Maven should take care of downloading
Tapestry, and its dependencies, as needed.</p><style
type="text/css">/*<![CDATA[*/
table.ScrollbarTable {border: none;padding: 3px;width: 100%;padding:
3px;margin: 0px;background-color: #f0f0f0}
table.ScrollbarTable td.ScrollbarPrevIcon {text-align: center;width:
16px;border: none;}
table.ScrollbarTable td.ScrollbarPrevName {text-align: left;border: none;}