diff --git a/src/site/apt/examples/display-dependency-updates.apt b/src/site/markdown/examples/display-dependency-updates.md similarity index 50% rename from src/site/apt/examples/display-dependency-updates.apt rename to src/site/markdown/examples/display-dependency-updates.md index 5666061a05..a8af766c23 100644 --- a/src/site/apt/examples/display-dependency-updates.apt +++ b/src/site/markdown/examples/display-dependency-updates.md @@ -1,44 +1,40 @@ - ~~ 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. +title: Checking for new dependency updates +author: Stephen Connolly +date: 2008-09-02 - ----- - Checking for new dependency updates - ----- - Stephen Connolly - ------ - 2008-09-02 - ------ + -Checking for new dependency updates +# Checking for new dependency updates - The <<>> goal will check all the dependencies used in your project and display a list - of those dependencies with newer versions available. +The `display-dependency-updates` goal will check all the dependencies used in your project and display a list +of those dependencies with newer versions available. - Here are some examples of what this looks like: +Here are some examples of what this looks like: ---- +```sh svn checkout http://svn.codehaus.org/mojo/trunk/mojo/build-helper-maven-plugin build-helper-maven-plugin cd build-helper-maven-plugin mvn versions:display-dependency-updates ---- +``` - Which produces the following output: +Which produces the following output: ---- +```sh [INFO] ------------------------------------------------------------------------ [INFO] Building Build Helper Maven Plugin [INFO] task-segment: [versions:display-dependency-updates] @@ -58,4 +54,4 @@ mvn versions:display-dependency-updates [INFO] Finished at: Fri Aug 15 10:46:03 IST 2008 [INFO] Final Memory: 10M/167M [INFO] ------------------------------------------------------------------------ ---- +```