Author: buildbot
Date: Thu Jan 14 13:19:58 2016
New Revision: 977687
Log:
Production update by buildbot for tapestry
Modified:
websites/production/tapestry/content/cache/main.pageCache
websites/production/tapestry/content/creating-the-skeleton-application.html
Modified: websites/production/tapestry/content/cache/main.pageCache
==============================================================================
Binary files - no diff available.
Modified:
websites/production/tapestry/content/creating-the-skeleton-application.html
==============================================================================
--- websites/production/tapestry/content/creating-the-skeleton-application.html
(original)
+++ websites/production/tapestry/content/creating-the-skeleton-application.html
Thu Jan 14 13:19:58 2016
@@ -67,14 +67,14 @@
</div>
<div id="content">
- <div id="ConfluenceContent"><p>First, let's create an empty
application. Tapestry provides a Maven <strong>archetype</strong> (a project
template) to make this easy.</p><p>For the tutorial, we're using a fresh
install of Eclipse and an empty workspace at
<code>/users/joeuser/workspace</code>. You may need to adjust a few things for
other operating systems or local paths.</p><h2
id="CreatingTheSkeletonApplication-UsingtheQuickstartArchetype">Using the
Quickstart Archetype</h2><p>From Eclipse, we'll use a Maven archetype to create
a skeleton Tapestry project.</p><div class="confluence-information-macro
confluence-information-macro-information"><p class="title">Maven Behind a
Firewall</p><span class="aui-icon aui-icon-small aui-iconfont-info
confluence-information-macro-icon"></span><div
class="confluence-information-macro-body"><p>If you are behind a
firewall/proxy, before performing any Maven downloads, you may need to
configure your proxy settings in your Maven setti
ngs.xml file (typically in the .m2 subdirectory of your home directory, ~/.m2
or C:\users\joeuser\.m2). Here is an example:</p><div class="code panel pdl"
style="border-width: 1px;"><div class="codeHeader panelHeader pdl"
style="border-bottom-width: 1px;"><b>settings.xml</b></div><div
class="codeContent panelContent pdl">
+ <div id="ConfluenceContent"><p>First, let's create an empty
application. Tapestry provides a Maven <strong>archetype</strong> (a project
template) to make this easy.</p><p>For the tutorial, we're using a fresh
install of Eclipse and an empty workspace at
<code>/users/joeuser/workspace</code>. You may need to adjust a few things for
other operating systems or local paths.</p><h2
id="CreatingTheSkeletonApplication-UsingtheQuickstartArchetype">Using the
Quickstart Archetype</h2><p>From Eclipse, we'll use a Maven archetype to create
a skeleton Tapestry project.</p><div class="confluence-information-macro
confluence-information-macro-information"><p class="title">Maven Behind a
Firewall</p><span class="aui-icon aui-icon-small aui-iconfont-info
confluence-information-macro-icon"></span><div
class="confluence-information-macro-body"><p>If you are behind a
firewall/proxy, before performing any Maven downloads, you may need to
configure your proxy settings in your Maven setti
ngs.xml file (typically in the .m2 subdirectory of your home directory, ~/.m2
or C:\users\joeuser\.m2). Here is an example (but check with your network
administrator for the names and numbers you should use here).</p><div
class="code panel pdl" style="border-width: 1px;"><div class="codeHeader
panelHeader pdl" style="border-bottom-width:
1px;"><b>settings.xml</b></div><div class="codeContent panelContent pdl">
<pre class="brush: xml; gutter: false; theme: Default"
style="font-size:12px;"><settings>
<proxies>
<proxy>
<active>true</active>
<protocol>http</protocol>
<host>myProxyServer.com</host>
- <port>8080</port>
+ <port>3128</port>
<username>joeuser</username>
<password>myPassword</password>
<nonProxyHosts></nonProxyHosts>