You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@opennlp.apache.org by bu...@apache.org on 2011/02/02 17:58:43 UTC

svn commit: r784654 - /websites/staging/opennlp/trunk/content/opennlp/building.html

Author: buildbot
Date: Wed Feb  2 16:58:42 2011
New Revision: 784654

Log:
Staging update by buildbot

Added:
    websites/staging/opennlp/trunk/content/opennlp/building.html

Added: websites/staging/opennlp/trunk/content/opennlp/building.html
==============================================================================
--- websites/staging/opennlp/trunk/content/opennlp/building.html (added)
+++ websites/staging/opennlp/trunk/content/opennlp/building.html Wed Feb  2 16:58:42 2011
@@ -0,0 +1,103 @@
+<!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>
+  <link href="/opennlp/css/opennlp.css" rel="stylesheet" type="text/css">
+  <title>Apache OpenNLP - Building from Source</title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+  <meta http-equiv="Content-Language" content="en">
+  <meta name="description" content="Apache OpenNLP is a Java machine learning toolkit for natural language processing (NLP). 
+    It supports the most common NLP tasks.">
+</head>
+
+<body>
+  <div id="banner">
+    <img id="opennlp-logo" title="Apache OpenNLP" width="300" height="75" src="/opennlp/images/onlplogo.jpg" alt="Apache OpenNLP">
+    <a id="apache-incubator-logo" title="Apache incubator" href="http://incubator.apache.org/">
+      <img src="http://incubator.apache.org/images/apache-incubator-logo.png" alt="Apache Incubator" border="0">
+    </a>   
+  </div>
+
+  <div id="navigation">
+    <h1 id="general">General</h1>
+<ul>
+<li><a href="index.html">Home</a></li>
+<li><a href="download.html">Download</a></li>
+<li><a href="http://www.apache.org/licenses/" class="externalLink">License</a></li>
+<li><a href="documentation.html">Documentation</a></li>
+<li><a href="news.html">News</a></li>
+<li><a href="mail-lists.html">Mailing Lists</a></li>
+<li><a href="https://issues.apache.org/jira/browse/OPENNLP" class="externalLink">Issue tracker</a></li>
+</ul>
+<h1 id="development">Development</h1>
+<ul>
+<li><a href="source-code.html">Source Code</a></li>
+<li><a href="team.html">Project Team</a></li>
+</ul>
+<h1 id="asf">ASF</h1>
+<ul>
+<li><a href="http://www.apache.org" class="externalLink">ASF</a></li>
+<li><a href="http://www.apache.org/foundation/thanks.html" class="externalLink">Thanks</a></li>
+<li><a href="http://www.apache.org/foundation/sponsorship.html" class="externalLink">Become a Sponsor</a></li>
+</ul>
+  </div>
+  
+  <div id="content">
+    <h1 class="title">Building from Source</h1>
+    <p>OpenNLP can either be build from the distributed sources or from
+a subversion checkout. These build instructions document how
+to build from the latest trunk version. The distributed source package
+include a README file which explains how to build it.</p>
+<p>To build at least Maven 3.0 and JDK 5 are required.
+If they are not installed, install them.</p>
+<p>On the first checkout everything should be build.
+Go to the opennlp folder and type "mvn install" to build all modules.
+The build installs the maven artifacts in the local repository
+and creates a binary and source distribution inside the 
+opennlp-distr/target folder.</p>
+<p>After the initial build the individual modules can be build on its own
+with "mvn install". In the opennlp-docs project it is
+recommended to always build with "mvn clean install" because
+changed docbook xml files might not be re-processed otherwise.</p>
+<p>In some cases it might be convenient to skip the tests.
+That can be done with the "-Dmaven.test.skip=true" option.
+For example type: "mvn clean install -Dmaventest.skip=true".
+No tests will no be executed.</p>
+<p>It might happen from time to time that the build fails,
+if so please report a broken build on the opennlp-dev mailing
+list. The build should always work for everyone.</p>
+  </div>
+  
+  <div class="clear">
+    <hr>
+  </div>
+    
+  <div id="footer">
+    <div class="copyright">
+      <p>
+        Copyright &copy; 2010 The Apache Software Foundation, Licensed under 
+        the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.
+        <br>
+        Apache and the Apache feather logo are trademarks of The Apache Software Foundation.
+      </p>
+    </div>
+  </div>
+</body>
+</html>