src/site/xdoc/building.xml (44 lines of code) (raw):
<?xml version="1.0"?>
<!--
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.
-->
<document xmlns="http://maven.apache.org/XDOC/2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
<properties>
<title>Building</title>
<author email="dev@commons.apache.org">Apache Commons Team</author>
</properties>
<body>
<section name="Overview">
<p>
Commons IO uses <a href="http://maven.apache.org">Maven</a> its build system.
</p>
<p>
Commons IO requires a minimum of JDK 8 to build.
</p>
<p>
You may also be interested in the upgrade notes:
</p>
<ul>
<li>Upgrade <a href="upgradeto2_0_1.html">from 2.0 to 2.0.1</a></li>
<li>Upgrade <a href="upgradeto2_0.html">from 1.4 to 2.0</a></li>
<li>Upgrade <a href="upgradeto1_4.html">from 1.3.2 to 1.4</a></li>
<li>Upgrade <a href="upgradeto1_3_2.html">from 1.3, or 1.3.1 to 1.3.2</a></li>
<li>Upgrade <a href="upgradeto1_3_1.html">from 1.3 to 1.3.1</a></li>
<li>Upgrade <a href="upgradeto1_3.html">from 1.2 to 1.3</a></li>
<li>Upgrade <a href="upgradeto1_2.html">from 1.1 to 1.2</a></li>
<li>Upgrade <a href="upgradeto1_1.html">from 1.0 to 1.1</a></li>
</ul>
</section>
<section name="Maven Goals">
<p>
The following <a href="http://maven.apache.org">Maven</a> commands can be used to build io:
</p>
<ul>
<li><code>mvn</code> - runs the default Maven goal which performs all build checks</li>
<li><code>mvn clean</code> - cleans up</li>
<li><code>mvn test</code> - compiles and runs the unit tests</li>
<li><code>mvn site</code> - creates the site and documentation</li>
<li><code>mvn package</code> - creates the jar</li>
</ul>
</section>
</body>
</document>