mirror of https://github.com/apache/maven.git
o adding some more guides and a little script to create a summary page
of the guides. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@306821 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a0f75ed3cd
commit
3849970022
|
@ -1,5 +1,5 @@
|
|||
------
|
||||
Guide
|
||||
Guide to Generating Sources
|
||||
------
|
||||
Jason van Zyl
|
||||
------
|
||||
|
|
|
@ -68,7 +68,7 @@ url: http://maven.apache.org
|
|||
<mainClass>com.mycompany.app.App</mainClass/>
|
||||
<packageName>com.mycompany.app</packageName>
|
||||
<!--
|
||||
<addClasspath/>
|
||||
<addClasspath>true</addClasspath>
|
||||
<addExtensions/>
|
||||
<classpathPrefix/>
|
||||
-->
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
------
|
||||
Guide to Proxy Settings
|
||||
Guide to using proxies
|
||||
------
|
||||
Jason van Zyl
|
||||
------
|
||||
12 October 2005
|
||||
------
|
||||
|
||||
Configuring a Proxy
|
||||
Configuring a proxy
|
||||
|
||||
You can configure a proxy to use for some or all of your HTTP requests in Maven 2.0. The username and password are only
|
||||
required if your proxy requires basic authentication (note that later releases may support storing your passwords in
|
||||
|
@ -38,4 +38,4 @@ the JDK configuration equivalent.
|
|||
|
||||
+----+
|
||||
|
||||
Please note that urrently NTML proxies are not supported as they have not been tested.
|
||||
Please note that urrently NTML proxies are not supported as they have not been tested.
|
|
@ -0,0 +1,51 @@
|
|||
#!/bin/sh
|
||||
|
||||
toc=`pwd`/toc.apt
|
||||
|
||||
echo " ------ " > $toc
|
||||
echo " Summary of Maven 2.x documentation " >> $toc
|
||||
echo " ------ " >> $toc
|
||||
echo " Jason van Zyl " >> $toc
|
||||
echo " ------ " >> $toc
|
||||
echo " 12 October 2005 " >> $toc
|
||||
echo " ------ " >> $toc
|
||||
|
||||
echo >> $toc
|
||||
echo "Documentation" >> $toc
|
||||
echo >> $toc
|
||||
|
||||
echo >> $toc
|
||||
echo "* Guides" >> $toc
|
||||
echo >> $toc
|
||||
echo " * {{{getting-started/index.html}Getting Started Guide}}" >> $toc
|
||||
echo >> $toc
|
||||
echo " * {{{plugin-development/index.html}Plug-in Developer's Guide}}" >> $toc
|
||||
echo >> $toc
|
||||
|
||||
echo "* Mini Guides" >> $toc
|
||||
echo >> $toc
|
||||
|
||||
(
|
||||
cd mini
|
||||
|
||||
for i in `ls guide-*.apt`
|
||||
do
|
||||
title=`grep "^ Guide" $i | sed 's/^ *//'`
|
||||
[ ! -z "$title" ] && echo " * {{{$i}$title}}" >> $toc && echo >> $toc
|
||||
done
|
||||
)
|
||||
|
||||
echo >> $toc
|
||||
echo "* Introductions" >> $toc
|
||||
echo >> $toc
|
||||
|
||||
(
|
||||
cd introduction
|
||||
|
||||
for i in `ls introduction-*.apt`
|
||||
do
|
||||
title=`grep "^ Introduction" $i | sed 's/^ *//'`
|
||||
[ ! -z "$title" ] && echo " * {{{$i}$title}}" >> $toc && echo >> $toc
|
||||
done
|
||||
)
|
||||
|
Loading…
Reference in New Issue