diff options
author | Mark Donszelmann <Mark.Donszelmann@gmail.com> | 2009-10-13 14:54:42 +0200 |
---|---|---|
committer | Mark Donszelmann <Mark.Donszelmann@gmail.com> | 2009-10-13 14:54:42 +0200 |
commit | 4a71a9ba0e7e921e81c2ce8341258e4fdb5eb9f1 (patch) | |
tree | 81dcdb111e9b4a006365c85a17386a8e951da5e8 | |
parent | 2c387d5dab6e85a1c5d1c1f4e0e8f6a177491081 (diff) | |
download | maven-nar-plugin-4a71a9ba0e7e921e81c2ce8341258e4fdb5eb9f1.tar.gz maven-nar-plugin-4a71a9ba0e7e921e81c2ce8341258e4fdb5eb9f1.tar.bz2 maven-nar-plugin-4a71a9ba0e7e921e81c2ce8341258e4fdb5eb9f1.tar.xz maven-nar-plugin-4a71a9ba0e7e921e81c2ce8341258e4fdb5eb9f1.zip |
Added site to github (for now)
-rw-r--r-- | README.txt | 11 | ||||
-rw-r--r-- | pom.xml | 19 | ||||
-rw-r--r-- | src/site/site.xml | 4 |
3 files changed, 26 insertions, 8 deletions
@@ -2,21 +2,22 @@ This plugin eventually replaces the freehep-nar-plugin. For now, see: -Documentation (old): +Documentation: -- http://java.freehep.org/freehep-nar-plugin/intro.html +- http://duns.github.com/maven-nar-plugin -Issues (new): +Issues: - https://issues.sonatype.org/browse/NAR -SCM (new): +SCM: - http://github.com/duns/maven-nar-plugin - http://github.com/duns/cpptasks-parallel -SCM (old): +Old: +- http://java.freehep.org/freehep-nar-plugin/intro.html - http://github.com/duns/freehep-nar-plugin @@ -34,7 +34,15 @@ <description> This plugin compiles native code and publishes native artifacts in the for of nar files. </description> - <url>http://java.freehep.org/freehep-nar-plugin/intro.html</url> + <url>http://duns.github.com/maven-nar-plugin/</url> + + <!-- temporarily until we have a fixed site --> + <distributionManagement> + <site> + <id>local</id> + <url>file:///Users/duns/sonatype/git/maven-nar-plugin-site</url> + </site> + </distributionManagement> <prerequisites> <maven>2.0.6</maven> @@ -117,6 +125,15 @@ <defaultGoal>install</defaultGoal> </build> + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + </plugin> + </plugins> + </reporting> + <profiles> <profile> <id>run-its</id> diff --git a/src/site/site.xml b/src/site/site.xml index 39b2220..743fa22 100644 --- a/src/site/site.xml +++ b/src/site/site.xml @@ -21,7 +21,7 @@ under the License. <bannerLeft> <name>Maven NAR Plugin</name> <src>http://maven.apache.org/images/apache-maven-project.png</src> - <href>http://java.freehep.org/freehep-nar-plugin</href> + <href>http://duns.github.com/maven-nar-plugin/</href> </bannerLeft> <body> @@ -47,7 +47,7 @@ under the License. <menu name="Developer Info"> <item name="NAR Dependencies" href="narDependencies.html"/> - <item name="Bug Reports" href="http://bugs.freehep.org/browse/NARPLUGIN"/> + <item name="Bug Reports" href="https://issues.sonatype.org/browse/NAR"/> <item name="Forum" href="http://forum.freehep.org/index.php?t=threadt&frm_id=14&rid=4"/> <item name="APIDocs" href="apidocs/index.html"/> <item name="NAR Library" href="narLibrary.html"/> |