Author: buildbot
Date: Thu May 7 10:33:46 2015
New Revision: 950435
Log:
Staging update by buildbot for sling
Added:
websites/staging/sling/trunk/content/documentation/development/maven-usage.html
Modified:
websites/staging/sling/trunk/content/ (props changed)
Propchange: websites/staging/sling/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu May 7 10:33:46 2015
@@ -1 +1 @@
-1677606
+1678158
Added:
websites/staging/sling/trunk/content/documentation/development/maven-usage.html
==============================================================================
---
websites/staging/sling/trunk/content/documentation/development/maven-usage.html
(added)
+++
websites/staging/sling/trunk/content/documentation/development/maven-usage.html
Thu May 7 10:33:46 2015
@@ -0,0 +1,131 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<!--
+
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE- 2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+ <head>
+ <title>Apache Sling - Maven Usage</title>
+ <link rel="icon" href="/res/favicon.ico">
+ <link rel="stylesheet" href="/res/site.css" type="text/css" media="all">
+ <link rel="stylesheet" href="/res/codehilite.css" type="text/css"
media="all">
+ <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
+ </head>
+ <body>
+ <div class="title">
+ <div class="logo">
+ <a href="http://sling.apache.org/">
+ <img border="0" alt="Apache Sling" src="/res/logo.png">
+ </a>
+ </div>
+ <div class="header">
+ <a href="http://www.apache.org/">
+ <img border="0" alt="Apache" src="/res/apache.png">
+ </a>
+ </div>
+ </div>
+
+ <div class="menu">
+ <p><strong><a href="/documentation.html">Documentation</a></strong> <br
/>
+<a href="/documentation/getting-started.html">Getting Started</a> <br />
+<a href="/documentation/the-sling-engine.html">The Sling Engine</a> <br />
+<a href="/documentation/development.html">Development</a> <br />
+<a href="/documentation/bundles.html">Bundles</a> <br />
+<a href="/documentation/tutorials-how-tos.html">Tutorials & How-Tos</a>
<br />
+<a href="/documentation/configuration.html">Configuration</a> </p>
+<p><a href="http://s.apache.org/sling.wiki">Wiki</a> <br />
+<a href="http://s.apache.org/sling.faq">FAQ</a> </p>
+<p><strong>API Docs</strong> <br />
+<a href="/apidocs/sling7/index.html">Sling 7</a> <br />
+<a href="/apidocs/sling6/index.html">Sling 6</a> <br />
+<a href="/apidocs/sling5/index.html">Sling 5</a> </p>
+<p><strong>Project info</strong> <br />
+<a href="/downloads.cgi">Downloads</a> <br />
+<a href="http://www.apache.org/licenses/">License</a> <br />
+<a href="/contributing.html">Contributing</a> <br />
+<a href="/news.html">News</a> <br />
+<a href="/links.html">Links</a> <br />
+<a href="/project-information.html">Project Information</a> <br />
+<a href="https://issues.apache.org/jira/browse/SLING">Issue Tracker</a> <br />
+<a href="http://ci.apache.org/builders/sling-trunk">Build Server</a> <br />
+<a href="/project-information/security.html">Security</a> </p>
+<p><strong>Source</strong> <br />
+<a href="http://svn.apache.org/viewvc/sling/trunk">Subversion</a> <br />
+<a href="git://git.apache.org/sling.git">Git</a> <br />
+<a href="https://github.com/apache/sling">Github Mirror</a> </p>
+<p><strong>Sponsorship</strong> <br />
+<a href="http://www.apache.org/foundation/thanks.html">Thanks</a> <br />
+<a href="http://www.apache.org/foundation/sponsorship.html">Become a
Sponsor</a> <br />
+<a href="http://www.apache.org/foundation/buy_stuff.html">Buy Stuff</a> </p>
+<p><strong><a href="/sitemap.html">Site Map</a></strong></p>
+<!-- no valid ads for now, we'll reactivate this when needed
+<iframe
+ src="http://www.apache.org/ads/button.html"
+ style="border-width:0; float: left" frameborder="0"
+ scrolling="no"
+ width="135"
+ height="135">
+</iframe>
+-->
+ </div>
+
+ <div class="main">
+ <div class="breadcrump" style="font-size: 80%;">
+ <a href="/">Home</a> » <a
href="/documentation.html">Documentation</a> » <a
href="/documentation/development.html">Development</a>
+ </div>
+
+
+
+ <h1>Maven Usage</h1>
+ <p>Apache Sling uses Maven as a build tool. This page documents some of
the choices that we made when using Maven.</p>
+<h2 id="parent-pom">Parent POM</h2>
+<p>We separate the reactor POM from the parent POM. While the reactor POM
functions as a simple aggregator, the parent POM, currently located at <a
href="http://svn.apache.org/repos/asf/sling/trunk/parent/pom.xml">parent/pom.xml</a>,
holds the common build configuration for all modules.</p>
+<p>The reference to the parent POM is usually set to a released version since
we don't deploy it as a SNAPSHOT during the build process. That reference must
also contain an empty parentPath element, otherwise recent version of Maven
will try to find it in the local filesystem, disregarding the version if the
groupId and artifactId match. An example of how to reference the parent POM
is</p>
+<table class="codehilitetable"><tr><td class="linenos"><div
class="linenodiv"><pre>1
+2
+3
+4
+5
+6</pre></div></td><td class="code"><div class="codehilite"><pre><span
class="nt"><parent></span>
+ <span class="nt"><groupId></span>org.apache.sling<span
class="nt"></groupId></span>
+ <span class="nt"><artifactId></span>sling<span
class="nt"></artifactId></span>
+ <span class="nt"><version></span>$VERSION<span
class="nt"></version></span>
+ <span class="nt"><relativePath/></span>
+<span class="nt"></parent></span>
+</pre></div>
+</td></tr></table>
+
+<p>Where <code>$VERSION</code> is replaced by the latest parent POM
version.</p>
+<h2 id="java-version">Java version</h2>
+<p>The version of Java targeted by a module can be declared by setting a
property in the pom.xml named <code>sling.java.version</code>. Configuration
inherited from the parent POM will ensure that all the plugins will be
correctly configured, including</p>
+<ul>
+<li>maven-compiler-plugin: source and target arguments to use when compiling
code</li>
+<li>animal-sniffer-maven-plugin: signatures to use when validating compliance
with a given Java version</li>
+<li>maven-bundle-plugin: value of the Bundle-RequiredExecutionEnvironment
header</li>
+</ul>
+<h2 id="dependency-management">Dependency management</h2>
+<p>See <a
href="/documentation/development/dependency-management.html">Dependency
Management</a></p>
+ <div class="timestamp" style="margin-top: 30px; font-size: 80%;
text-align: right;">
+ Rev. 1678158 by rombert on Thu, 7 May 2015 10:33:32 +0000
+ </div>
+ <div class="trademarkFooter">
+ Apache Sling, Sling, Apache, the Apache feather logo, and the Apache
Sling project
+ logo are trademarks of The Apache Software Foundation. All other marks
mentioned
+ may be trademarks or registered trademarks of their respective owners.
+ </div>
+ </div>
+ </body>
+</html>