blob: dfe6e39d99c2d1f8b1104828409d7acf17a6918f [file] [log] [blame]
<?php require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); include($App->getProjectCommon()); # All on the same line to unclutter the user's desktop'
#
# Begin: page-specific settings. Change these.
$pageTitle = "Policy on the Use of GPL+Classpath Exception by Eclipse Projects";
$pageKeywords = "about, documents, board, resolution, foundation";
$pageAuthor = "M. Milinkovich May 29, 2015";
# Add page-specific Nav bars here
# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
# $Nav->addNavSeparator("My Page Links", "downloads.php");
# $Nav->addCustomNav("My Link", "mypage.php", "_self", 1);
# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 1);
# End: page-specific settings
#
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="maincontent">
<div id="midcolumn">
<h1>$pageTitle</h1>
<h3>Approved 2015-05-20</h3>
<div class="homeitem3col">
<h2>Preamble</h2>
<p>The GNU General Public License version 2, plus <a href="http://www.gnu.org/software/classpath/license.html" target="_blank">Classpath Exception</a> (GPL+CE)
is a widely used license in the Java ecosystem. This policy outlines how an Eclipse project may request approval to use or distribute
a GPL+CE-licensed library, and the steps they will have to make use of it.</p>
<p>This policy relies upon and uses the terms from the
<a href="Eclipse_Policy_and_Procedure_for_3rd_Party_Dependencies_Final.pdf">Guidelines for the Review of Third Party Dependencies</a>,
and the <a href="/legal/EclipseLegalProcessPoster.pdf">Eclipse Due Diligence Process</a>.
<h2>Policy</h2>
<ol>
<li>Distribution of any GPL+CE-licensed prerequisites by an Eclipse project will require
super-majority approval by the Eclipse Foundation Board of Directors. Use of a
GPL+CE-licensed library as a works-with dependency will require approval by the EMO.</li></br>
<li>Do not create any derivative work from the GPL+CE-licensed code outside of the GPL+CE
licensed component. Where possible and reasonable, it is recommended that changes made
to the GPL+CE licensed component be offered back upstream to the original source of
development. If you have any questions or concerns, please contact license@eclipse.org.</li></br>
<li>Many open source projects do not provide binaries for their GPL+CE-licensed code. If
the Eclipse project builds the executable form of the code from source, it must provide
all source and build scripts such that a third party may attempt to re-build the
distributed binary.</li>
</ol>
<p>If you have any questions or concerns about this policy, please contact
<a href="mailto:license@eclipse.org">license@eclipse.org</a></p>
</div>
</div>
<div id="rightcolumn">
<div class="sideitem">
<h6>Related Links</h6>
<ul>
<li><a href="../foundation/directors.php">Board of Directors</a></li>
<li><a href="../../membership/">Membership</a></li>
<li><a href="../../membership/become_a_member/">Become a member</a></li>
</ul>
</div>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>