blob: 852514f31f347143ec7027dd40e233a0a7222544 [file] [log] [blame]
<?php
/*******************************************************************************
* Copyright (c) 2009 Eclipse Foundation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*
*******************************************************************************/
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());
$localVersion = false;
# Define these here, or in _projectCommon.php for site-wide values
$pageKeywords = "eclipse, project, lyo, oslc, open services for lifecycle collaboration";
$pageAuthor = "Mike Fiedler";
$pageTitle = "Eclipse Lyo Downloads";
// # Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<h2>OSLC4J - Java SDK for OSLC</h1>
<p>All downloads are provided under the terms and conditions of the <a href="/legal/epl/notice.php">Eclipse Public License</a> and the <a href="http://www.eclipse.org/org/documents/edl-v10.php">Eclipse Distribution License</a> unless otherwise specified.</p>
<h3>OSLC4J 1.0 and Eclipse approved versions of prerequisite packages </h2>
<ul>
<li>Zip: <a href="http://www.eclipse.org/downloads/download.php?file=/lyo/releases/org.eclipse.lyo.oslc4j-1.0.zip">org.eclipse.lyo.oslc4j-1.0.zip</a></li>
<li>Tarball: <a href="http://www.eclipse.org/downloads/download.php?file=/lyo/releases/org.eclipse.lyo.oslc4j-1.0.tar.gz">org.eclipse.lyo.oslc4j-1.0.tar.gz</a></li>
</ul>
<h3>OSLC4J 1.0 jars only</h2>
<ul>
<li>Zip: <a href="http://www.eclipse.org/downloads/download.php?file=/lyo/releases/org.eclipse.lyo.oslc4j.no_dependencies-1.0.zip">org.eclipse.lyo.oslc4j-1.0.zip</a></li>
<li>Tarball: <a href="http://www.eclipse.org/downloads/download.php?file=/lyo/releases/org.eclipse.lyo.oslc4j.no_dependencies-1.0.tar.gz">org.eclipse.lyo.oslc4j-1.0.tar.gz</a></li>
</ul>
<h4>List of prerequisite packages required for development and runtime</h3>
<dl>
<dt>Apache Wink<dt>
<dd>wink-common_1.2.1-incubating</dd>
<dd>wink-server_1.2.1-incubating</dd>
<dd>wink-client_1.2.1-incubating</dd>
<dd>wink-json4j_1.2.1-incubating</dd>
<dd>wink-json4j-provider-1.2.1-incubating</dd>
<dt>Apache Jena</dt>
<dd>jena-core_2.7.1</dd>
<dd>jena-iri_0.9.2</dd>
<dt>ICU4J</dt>
<dd>com.ibm.icu.base_4.0.1</dd>
<dt>JAXB</dt>
<dd>javax.xml.bind_2.2.0</dd>
<dd>com.sun.xml.bind_2.2.0 (or other JAXB implementation)</dd>
<dt>Java Activation API</dt>
<dd>javax.activation_1.1.0</dd>
<dt>Java Annotation API</dt>
<dd>javax.annotation_1.0.0</dd>
<dt>Java Servlet API (both 3.0.x and 2.5 are required by OSLC4J and dependencies)</dt>
<dd>javax.servlet_2.5.0</dd>
<dd>javax.servlet_3.0.0</dd>
<dt>JSR-311 (JAX-RS) API</dt>
<dd>javax.ws.rs_1.1.1</dd>
<dt>Java XML Streaming API</dt>
<dd>javax.xml.stream_1.0.1</dd>
<dd>Java XML APIs</dd>
<dt>javax.xml_1.3.04</dt>
<dt>Apache Commons Codec</dt>
<dd>org.apache.commons.codec_1.3.0</dd>
<dt>Apache Commons Lang</dt>
<dd>org.apache.commons.lang_2.3.0</dd>
<dt>Apache HTTP Components</dt>
<dd>org.apache.httpcomponents.httpclient_4.1.0</dd>
<dd>org.apache.httpcomponents.httpcore_4.1.0</dd>
<dt>Apache Log4J</dt>
<dd>org.apache.log4j_1.2.15</dd>
<dt>Apqche Xerces</dt>
<dd>org.apache.xerces_2.8.0</dd>
<dt>SLF4J</dt>
<dd>org.slf4j.api_1.6.4</dd>
<dd>org.slf4j.jcl_1.6.4</dd>
<dd>org.slf4j.log4j_1.6.4</dd>
</dl>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, null, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>