Author: britter Date: Mon Dec 29 11:43:00 2014 New Revision: 1648307 URL: http://svn.apache.org/r1648307 Log: Update information on website
Modified: commons/proper/imaging/trunk/src/site/xdoc/gettingstarted.xml commons/proper/imaging/trunk/src/site/xdoc/index.xml Modified: commons/proper/imaging/trunk/src/site/xdoc/gettingstarted.xml URL: http://svn.apache.org/viewvc/commons/proper/imaging/trunk/src/site/xdoc/gettingstarted.xml?rev=1648307&r1=1648306&r2=1648307&view=diff ============================================================================== --- commons/proper/imaging/trunk/src/site/xdoc/gettingstarted.xml (original) +++ commons/proper/imaging/trunk/src/site/xdoc/gettingstarted.xml Mon Dec 29 11:43:00 2014 @@ -24,6 +24,9 @@ limitations under the License. <!-- ================================================== --> <section name="Requirements"> + <strong>Outdated:</strong> This page contains information which is not up to date. Help making this page more useful + by contributing a patch. + <p> <ul> <li>Commons Imaging requires Java 1.5 or higher.</li> Modified: commons/proper/imaging/trunk/src/site/xdoc/index.xml URL: http://svn.apache.org/viewvc/commons/proper/imaging/trunk/src/site/xdoc/index.xml?rev=1648307&r1=1648306&r2=1648307&view=diff ============================================================================== --- commons/proper/imaging/trunk/src/site/xdoc/index.xml (original) +++ commons/proper/imaging/trunk/src/site/xdoc/index.xml Mon Dec 29 11:43:00 2014 @@ -74,22 +74,49 @@ </section> <!-- ================================================== --> <section name="Release Information"> - <subsection name="Latest Imaging Release"> - <p>The latest stable release of Imaging is 1.0. You may: </p> + <subsection name="Help Needed!"> + There is currently no stable release of Imaging available, because there are a lot of outstanding issues. + If you want to help getting out a release you may: + <ul> + <li>Look through the <a href="https://issues.apache.org/jira/issues/?jql=project%20%3D%20IMAGING%20AND%20resolution%20%3D%20Unresolved%20AND%20fixVersion%20%3D%20%22Patch%20Needed%22%20ORDER%20BY%20priority%20DESC">issues waiting for a patch</a></li> + <li>Look through the <em>Needs Work</em> tags in the <a href="taglist.html">TagList report</a></li> + <li>Contribute a patch</li> + <li>Create a PR via <a href="https://github.com/apache/commons-imaging">Github</a></li> + </ul> + Make sure to read through our <a href="http://commons.apache.org/patches.html">guide lines for contributing patches</a> before you start coding. This will stream line the process of getting your contributions into the code. + </subsection> + <subsection name="Latest Imaging SNAPSHOT"> + <p>There is currently no stable release of Imaging. You may: </p> <ul> - <li>Download <a href="download_imaging.cgi">1.0</a></li> + <li>Build Imaging from sources by checking out the source code from the <a href="source-repository.html">SVN repository</a>.</li> + <li>Pull the latest snapshot from the Apache snapshot repository</li> + <!--<li>Download <a href="download_imaging.cgi">1.0</a></li>--> </ul> - <p> - Alternatively you can pull it from the central Maven repositories: - <pre> - <dependency> - <groupId>org.apache.commons</groupId> - <artifactId>commons-imaging</artifactId> - <version>1.0</version> - <dependency> - </pre> - </p> + <p> + For pulling the latest snapshot via maven you need to add the Apache snapshot repository to your pom.xml: + <pre> +<repository> + <id>apache.snapshots</id> + <name>Apache Development Snapshot Repository</name> + <url>https://repository.apache.org/content/repositories/snapshots/</url> + <releases> + <enabled>false</enabled> + </releases> + <snapshots> + <enabled>true</enabled> + </snapshots> +</repository> + </pre> + Then you can use the SNAPSHOT version of Commons Imaging in your pom.xml: + <pre> +<dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-imaging</artifactId> + <version>1.0-SNAPSHOT</version> +<dependency> + </pre> + </p> </subsection> <subsection name="Final Sanselan Release"> <p>The last stable release of Sanselan, before it was renamed to Imaging, was 0.97 You may: </p> @@ -100,11 +127,11 @@ <p> Alternatively you can pull it from the central Maven repositories: <pre> - <dependency> - <groupId>org.apache.sanselan</groupId> - <artifactId>sanselan</artifactId> - <version>0.97-incubator</version> - <dependency> +<dependency> + <groupId>org.apache.sanselan</groupId> + <artifactId>sanselan</artifactId> + <version>0.97-incubator</version> +<dependency> </pre> </p> </subsection>