Repository: maven-aether Updated Branches: refs/heads/ant-tasks 261b17db3 -> e07885b42
publish site Project: http://git-wip-us.apache.org/repos/asf/maven-aether/repo Commit: http://git-wip-us.apache.org/repos/asf/maven-aether/commit/e07885b4 Tree: http://git-wip-us.apache.org/repos/asf/maven-aether/tree/e07885b4 Diff: http://git-wip-us.apache.org/repos/asf/maven-aether/diff/e07885b4 Branch: refs/heads/ant-tasks Commit: e07885b42b8217ca960f72b674b08ccf1390f6b7 Parents: 261b17d Author: Hervé Boutemy <hbout...@apache.org> Authored: Sun May 8 03:08:12 2016 +0200 Committer: Hervé Boutemy <hbout...@apache.org> Committed: Sun May 8 03:08:12 2016 +0200 ---------------------------------------------------------------------- README.md | 7 +++---- pom.xml | 3 ++- src/site/markdown/index.md.vm | 1 + src/site/site.xml | 42 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 48 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven-aether/blob/e07885b4/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index ee213a4..83abe3a 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Aether Ant Tasks The Aether Ant Tasks enable build scripts for [Apache Ant](http://ant.apache.org/) 1.7+ to use -[Eclipse Aether](http://www.eclipse.org/aether) combined to -[Apache Maven Aether Provider](http://maven.apache.org/ref/current/maven-aether-provider/) to resolve dependencies +[Maven Aether](/aether/) combined to +[Apache Maven Aether Provider](/ref/current/maven-aether-provider/) to resolve dependencies and install and deploy locally built artifacts. To integrate the tasks into your build file, copy the JAR into your project's lib directory and use the following @@ -21,7 +21,7 @@ See the build.xml in the project sources for a complete example build script. ## Settings -The Ant tasks are tightly integrated with the usual [Apache Maven settings.xml](http://maven.apache.org/settings.html). +The Ant tasks are tightly integrated with the usual [Apache Maven settings.xml](/settings.html). By default, the usual ${user.home}/.m2/settings.xml is used for user settings. For the global settings, different paths will be tried: @@ -241,4 +241,3 @@ following placeholders to refer to the coordinates of the currently processed ar * {baseVersion}, e.g. "1.0.0-SNAPSHOT" * {extension}, e.g. "jar" * {classifier}, e.g. "sources" - http://git-wip-us.apache.org/repos/asf/maven-aether/blob/e07885b4/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index dc45f6e..fd2788a 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,7 @@ <parent> <groupId>org.apache.maven</groupId> <artifactId>maven-parent</artifactId> - <version>27</version> + <version>30-SNAPSHOT</version> </parent> <groupId>org.apache.maven.aether</groupId> @@ -253,6 +253,7 @@ <excludes combine.children="append"> <exclude>src/test/resources/**/*.txt</exclude> <exclude>README.md</exclude> + <exclude>src/site/markdown/**/*.md.vm</exclude> </excludes> </configuration> </plugin> http://git-wip-us.apache.org/repos/asf/maven-aether/blob/e07885b4/src/site/markdown/index.md.vm ---------------------------------------------------------------------- diff --git a/src/site/markdown/index.md.vm b/src/site/markdown/index.md.vm new file mode 100644 index 0000000..21d7689 --- /dev/null +++ b/src/site/markdown/index.md.vm @@ -0,0 +1 @@ +#include( "../../../README.md" ) http://git-wip-us.apache.org/repos/asf/maven-aether/blob/e07885b4/src/site/site.xml ---------------------------------------------------------------------- diff --git a/src/site/site.xml b/src/site/site.xml new file mode 100644 index 0000000..d4b36b1 --- /dev/null +++ b/src/site/site.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- +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. +--> + +<project xmlns="http://maven.apache.org/DECORATION/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/DECORATION/1.1.0 http://maven.apache.org/xsd/decoration-1.1.0.xsd" + name="Apache Maven"> + + <custom> + <fluidoSkin> + <profile>sandbox</profile> + </fluidoSkin> + </custom> + + <body> + <menu name="Overview"> + <item name="Introduction" href="index.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> + </menu> + + <menu ref="reports"/> + </body> +</project> \ No newline at end of file