From: dion g. <dio...@us...> - 2004-02-17 06:09:31
|
diongillard 04/02/16 22:01:01 Modified: xdocs installing.xml Log: Fix repo name Revision Changes Path 1.2 +1 -1 maven-plugins/xdocs/installing.xml Index: installing.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/xdocs/installing.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- installing.xml 20 Jan 2004 08:18:48 -0000 1.1 +++ installing.xml 17 Feb 2004 06:01:00 -0000 1.2 @@ -18,7 +18,7 @@ <subsection name="Automatic Install"> <p> - You can set up your Maven installation to "know about" the Maven-Plugins project. To do this you need to add <B>http://maven-plugins.sf.net</B> to your <B>maven.repo.remote</B> parameter (can be set in build.properties for example). + You can set up your Maven installation to "know about" the Maven-Plugins project. To do this you need to <b>add</b> <code>http://maven-plugins.sf.net/maven</code> to your <B>maven.repo.remote</B> parameter (can be set in build.properties for example). </p> <p> You can then download and install plugins as follows |
From: dion g. <dio...@us...> - 2004-02-17 06:24:02
|
diongillard 04/02/16 22:15:32 Modified: xdocs installing.xml Log: Fix to docs to use the right groupId and give a demo usage Revision Changes Path 1.3 +3 -3 maven-plugins/xdocs/installing.xml Index: installing.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/xdocs/installing.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- installing.xml 17 Feb 2004 06:01:00 -0000 1.2 +++ installing.xml 17 Feb 2004 06:15:31 -0000 1.3 @@ -22,11 +22,11 @@ </p> <p> You can then download and install plugins as follows - <source> -maven -DartifactId=ARTIFACTID -DgroupID=GROUPID -Dversion=VERSION plugin:download - </source> + <source>maven -DartifactId=ARTIFACTID -DgroupID=GROUPID -Dversion=VERSION plugin:download</source> replacing ARTIFACTID, GROUPID, VERSION by the details fro the plugin that you want to download. This will then download the plugin and install it in your local set-up. + For example to download the findbug plugin, use: </p> + <source>maven -DartifactId=maven-findbugs-plugin -DgroupID=maven-plugins -Dversion=1.0-SNAPSHOT plugin:download</source> </subsection> </section> |
From: dion g. <dio...@us...> - 2004-02-17 06:25:12
|
diongillard 04/02/16 22:16:41 Modified: xdocs installing.xml Log: Fix typo Revision Changes Path 1.4 +1 -1 maven-plugins/xdocs/installing.xml Index: installing.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/xdocs/installing.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- installing.xml 17 Feb 2004 06:15:31 -0000 1.3 +++ installing.xml 17 Feb 2004 06:16:41 -0000 1.4 @@ -23,7 +23,7 @@ <p> You can then download and install plugins as follows <source>maven -DartifactId=ARTIFACTID -DgroupID=GROUPID -Dversion=VERSION plugin:download</source> - replacing ARTIFACTID, GROUPID, VERSION by the details fro the plugin that you want to download. This will then download the plugin and install it in your local set-up. + replacing ARTIFACTID, GROUPID, VERSION by the details from the plugin that you want to download. This will then download the plugin and install it in your local set-up. For example to download the findbug plugin, use: </p> <source>maven -DartifactId=maven-findbugs-plugin -DgroupID=maven-plugins -Dversion=1.0-SNAPSHOT plugin:download</source> |
From: dion g. <dio...@us...> - 2004-02-17 06:31:28
|
diongillard 04/02/16 22:22:56 Modified: xdocs installing.xml Log: Another typo Revision Changes Path 1.5 +2 -2 maven-plugins/xdocs/installing.xml Index: installing.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/xdocs/installing.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- installing.xml 17 Feb 2004 06:16:41 -0000 1.4 +++ installing.xml 17 Feb 2004 06:22:56 -0000 1.5 @@ -22,11 +22,11 @@ </p> <p> You can then download and install plugins as follows - <source>maven -DartifactId=ARTIFACTID -DgroupID=GROUPID -Dversion=VERSION plugin:download</source> + <source>maven -DartifactId=ARTIFACTID -DgroupId=GROUPID -Dversion=VERSION plugin:download</source> replacing ARTIFACTID, GROUPID, VERSION by the details from the plugin that you want to download. This will then download the plugin and install it in your local set-up. For example to download the findbug plugin, use: </p> - <source>maven -DartifactId=maven-findbugs-plugin -DgroupID=maven-plugins -Dversion=1.0-SNAPSHOT plugin:download</source> + <source>maven -DartifactId=maven-findbugs-plugin -DgroupId=maven-plugins -Dversion=1.0-SNAPSHOT plugin:download</source> </subsection> </section> |
From: Eric P. <de...@us...> - 2004-02-17 14:06:35
|
dep4b 04/02/17 05:57:49 Modified: xdocs installing.xml Log: Make text clearer to prevent confusion. Revision Changes Path 1.6 +3 -0 maven-plugins/xdocs/installing.xml Index: installing.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/xdocs/installing.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- installing.xml 17 Feb 2004 06:22:56 -0000 1.5 +++ installing.xml 17 Feb 2004 13:57:48 -0000 1.6 @@ -21,6 +21,9 @@ You can set up your Maven installation to "know about" the Maven-Plugins project. To do this you need to <b>add</b> <code>http://maven-plugins.sf.net/maven</code> to your <B>maven.repo.remote</B> parameter (can be set in build.properties for example). </p> <p> + Typically it will look like <code>maven.repo.remote=http://www.ibiblio.org,http://maven-plugins.sf.net/maven</code> + </p> + <p> You can then download and install plugins as follows <source>maven -DartifactId=ARTIFACTID -DgroupId=GROUPID -Dversion=VERSION plugin:download</source> replacing ARTIFACTID, GROUPID, VERSION by the details from the plugin that you want to download. This will then download the plugin and install it in your local set-up. |
From: Eric P. <de...@us...> - 2005-06-03 14:01:36
|
dep4b 05/06/03 07:01:30 Modified: xdocs installing.xml Log: Try and clarify downloading and installing a plugin. Revision Changes Path 1.7 +12 -4 maven-plugins/xdocs/installing.xml Index: installing.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/xdocs/installing.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- installing.xml 17 Feb 2004 13:57:48 -0000 1.6 +++ installing.xml 3 Jun 2005 14:01:30 -0000 1.7 @@ -7,18 +7,25 @@ <body> <section name="Installation of Plugins"> <p> - Plugins available from this site need installing into the local Maven repository set-up before use. There are 2 ways to do this. + Plugins available from this site need installing into the local Maven repository set-up before use. + There are 2 ways to do this. </p> <subsection name="Manual Install"> <p> - After you have downloaded a plugin for Maven (from Maven-Plugins, or from a different source), you should look in your Maven installation and you will find <B>$MAVEN_HOME/plugins/</B>. You need to copy your plugin into that directory. If you then type <I>maven -g</I> you will get a list of all plugins and goals that Maven can find (note that you may need to remove your ".maven" directory first, because Maven caches information). + After you have downloaded a plugin for Maven (from <a href="http://maven-plugins.sourceforge.net/repository/maven-plugins/">Maven-Plugins</a>, + or from a different source), you should look in your Maven installation and you will find <B>$MAVEN_HOME/plugins/</B>. + You need to copy your plugin into that directory. If you then type <I>maven -g</I> you will get a list + of all plugins and goals that Maven can find (note that you may need to remove your ".maven/cache" directory + first, because Maven caches plugin information). </p> </subsection> <subsection name="Automatic Install"> <p> - You can set up your Maven installation to "know about" the Maven-Plugins project. To do this you need to <b>add</b> <code>http://maven-plugins.sf.net/maven</code> to your <B>maven.repo.remote</B> parameter (can be set in build.properties for example). + You can set up your Maven installation to "know about" the Maven-Plugins project. To do this you need + to <b>add</b> <code>http://maven-plugins.sf.net/maven</code> to your <B>maven.repo.remote</B> property + (can be set in project.properties for example). </p> <p> Typically it will look like <code>maven.repo.remote=http://www.ibiblio.org,http://maven-plugins.sf.net/maven</code> @@ -26,7 +33,8 @@ <p> You can then download and install plugins as follows <source>maven -DartifactId=ARTIFACTID -DgroupId=GROUPID -Dversion=VERSION plugin:download</source> - replacing ARTIFACTID, GROUPID, VERSION by the details from the plugin that you want to download. This will then download the plugin and install it in your local set-up. + replacing ARTIFACTID, GROUPID, VERSION by the details from the plugin that you want to download. This + will then download the plugin and install it in your local set-up. For example to download the findbug plugin, use: </p> <source>maven -DartifactId=maven-findbugs-plugin -DgroupId=maven-plugins -Dversion=1.0-SNAPSHOT plugin:download</source> |
From: Eric P. <de...@us...> - 2006-04-25 18:41:00
|
dep4b 06/04/25 11:40:56 Modified: xdocs installing.xml Log: update installation documents. Revision Changes Path 1.8 +4 -4 maven-plugins/xdocs/installing.xml Index: installing.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/xdocs/installing.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- installing.xml 3 Jun 2005 14:01:30 -0000 1.7 +++ installing.xml 25 Apr 2006 18:40:56 -0000 1.8 @@ -24,20 +24,20 @@ <subsection name="Automatic Install"> <p> You can set up your Maven installation to "know about" the Maven-Plugins project. To do this you need - to <b>add</b> <code>http://maven-plugins.sf.net/maven</code> to your <B>maven.repo.remote</B> property + to <b>add</b> <code>http://maven-plugins.sourceforge.net/repository</code> to your <B>maven.repo.remote</B> property (can be set in project.properties for example). </p> <p> - Typically it will look like <code>maven.repo.remote=http://www.ibiblio.org,http://maven-plugins.sf.net/maven</code> + Typically it will look like <code>maven.repo.remote=http://www.ibiblio.org,http://maven-plugins.sourceforge.net/repository</code> </p> <p> You can then download and install plugins as follows <source>maven -DartifactId=ARTIFACTID -DgroupId=GROUPID -Dversion=VERSION plugin:download</source> replacing ARTIFACTID, GROUPID, VERSION by the details from the plugin that you want to download. This will then download the plugin and install it in your local set-up. - For example to download the findbug plugin, use: + For example to download the findbugs plugin, use: </p> - <source>maven -DartifactId=maven-findbugs-plugin -DgroupId=maven-plugins -Dversion=1.0-SNAPSHOT plugin:download</source> + <source>maven -DartifactId=maven-findbugs-plugin -DgroupId=maven-plugins -Dversion=1.0-SNAPSHOT plugin:download -Dmaven.repo.remote=http://www.ibiblio.org,http://maven-plugins.sourceforge.net/repository</source> </subsection> </section> |
From: Jeff J. <jef...@us...> - 2006-08-09 03:53:17
|
jeffjensen 06/08/08 20:53:15 Modified: xdocs installing.xml Log: Fix ibiblio URLs thanks to Dennis Lundberg. Revision Changes Path 1.9 +10 -10 maven-plugins/xdocs/installing.xml Index: installing.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/xdocs/installing.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- installing.xml 25 Apr 2006 18:40:56 -0000 1.8 +++ installing.xml 9 Aug 2006 03:53:15 -0000 1.9 @@ -7,37 +7,37 @@ <body> <section name="Installation of Plugins"> <p> - Plugins available from this site need installing into the local Maven repository set-up before use. + Plugins available from this site need installing into the local Maven repository set-up before use. There are 2 ways to do this. </p> <subsection name="Manual Install"> <p> - After you have downloaded a plugin for Maven (from <a href="http://maven-plugins.sourceforge.net/repository/maven-plugins/">Maven-Plugins</a>, - or from a different source), you should look in your Maven installation and you will find <B>$MAVEN_HOME/plugins/</B>. - You need to copy your plugin into that directory. If you then type <I>maven -g</I> you will get a list - of all plugins and goals that Maven can find (note that you may need to remove your ".maven/cache" directory + After you have downloaded a plugin for Maven (from <a href="http://maven-plugins.sourceforge.net/repository/maven-plugins/">Maven-Plugins</a>, + or from a different source), you should look in your Maven installation and you will find <B>$MAVEN_HOME/plugins/</B>. + You need to copy your plugin into that directory. If you then type <I>maven -g</I> you will get a list + of all plugins and goals that Maven can find (note that you may need to remove your ".maven/cache" directory first, because Maven caches plugin information). </p> </subsection> <subsection name="Automatic Install"> <p> - You can set up your Maven installation to "know about" the Maven-Plugins project. To do this you need - to <b>add</b> <code>http://maven-plugins.sourceforge.net/repository</code> to your <B>maven.repo.remote</B> property + You can set up your Maven installation to "know about" the Maven-Plugins project. To do this you need + to <b>add</b> <code>http://maven-plugins.sourceforge.net/repository</code> to your <B>maven.repo.remote</B> property (can be set in project.properties for example). </p> <p> - Typically it will look like <code>maven.repo.remote=http://www.ibiblio.org,http://maven-plugins.sourceforge.net/repository</code> + Typically it will look like <code>maven.repo.remote=http://www.ibiblio.org/maven,http://maven-plugins.sourceforge.net/repository</code> </p> <p> You can then download and install plugins as follows <source>maven -DartifactId=ARTIFACTID -DgroupId=GROUPID -Dversion=VERSION plugin:download</source> - replacing ARTIFACTID, GROUPID, VERSION by the details from the plugin that you want to download. This + replacing ARTIFACTID, GROUPID, VERSION by the details from the plugin that you want to download. This will then download the plugin and install it in your local set-up. For example to download the findbugs plugin, use: </p> - <source>maven -DartifactId=maven-findbugs-plugin -DgroupId=maven-plugins -Dversion=1.0-SNAPSHOT plugin:download -Dmaven.repo.remote=http://www.ibiblio.org,http://maven-plugins.sourceforge.net/repository</source> + <source>maven -DartifactId=maven-findbugs-plugin -DgroupId=maven-plugins -Dversion=1.0-SNAPSHOT plugin:download -Dmaven.repo.remote=http://www.ibiblio.org/maven,http://maven-plugins.sourceforge.net/repository</source> </subsection> </section> |
From: Jeff J. <jef...@us...> - 2007-01-22 01:30:15
|
jeffjensen 07/01/21 17:30:13 Modified: xdocs installing.xml Log: Add doc on snapshot repository. Revision Changes Path 1.10 +6 -0 maven-plugins/xdocs/installing.xml Index: installing.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/xdocs/installing.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- installing.xml 9 Aug 2006 03:53:15 -0000 1.9 +++ installing.xml 22 Jan 2007 01:30:12 -0000 1.10 @@ -39,6 +39,12 @@ </p> <source>maven -DartifactId=maven-findbugs-plugin -DgroupId=maven-plugins -Dversion=1.0-SNAPSHOT plugin:download -Dmaven.repo.remote=http://www.ibiblio.org/maven,http://maven-plugins.sourceforge.net/repository</source> </subsection> + <subsection name="Snapshots"> + <p> + If you need to test a snapshot, use the following snapshot repository as above: + <code>http://maven-plugins.sourceforge.net/snapshot-repository</code> + </p> + </subsection> </section> </body> |
From: Jeff J. <jef...@us...> - 2007-01-28 16:37:43
|
jeffjensen 07/01/28 08:37:41 Modified: tasks/xdocs index.xml xdocs installing.xml Log: Move plugin install info from tasks plugin to general install page. Revision Changes Path 1.7 +2 -11 maven-plugins/tasks/xdocs/index.xml Index: index.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/tasks/xdocs/index.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- index.xml 10 Aug 2006 03:32:49 -0000 1.6 +++ index.xml 28 Jan 2007 16:37:40 -0000 1.7 @@ -17,17 +17,8 @@ <section name="Instructions"> <ol> <li> - Install the plugin. - Preferred manner is with a dependency in the project.xml file - (use the desired plugin version, of course): -<source><![CDATA[ -<dependency> - <groupId>maven-plugins</groupId> - <artifactId>maven-tasks-plugin</artifactId> - <version>1.3.0</version> - <type>plugin</type> -</dependency> -]]></source> + Install the plugin per the + <a href="/installing.html">general installation instructions</a>. </li> <li> Add the tasks plugin to the report section in the project.xml file: 1.11 +16 -0 maven-plugins/xdocs/installing.xml Index: installing.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/xdocs/installing.xml,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- installing.xml 22 Jan 2007 01:30:12 -0000 1.10 +++ installing.xml 28 Jan 2007 16:37:40 -0000 1.11 @@ -22,6 +22,7 @@ </subsection> <subsection name="Automatic Install"> + <h4>Make Your Project Aware of the SourceForge Repository</h4> <p> You can set up your Maven installation to "know about" the Maven-Plugins project. To do this you need to <b>add</b> <code>http://maven-plugins.sourceforge.net/repository</code> to your <B>maven.repo.remote</B> property @@ -30,6 +31,7 @@ <p> Typically it will look like <code>maven.repo.remote=http://www.ibiblio.org/maven,http://maven-plugins.sourceforge.net/repository</code> </p> + <h4>Manual Download</h4> <p> You can then download and install plugins as follows <source>maven -DartifactId=ARTIFACTID -DgroupId=GROUPID -Dversion=VERSION plugin:download</source> @@ -38,6 +40,20 @@ For example to download the findbugs plugin, use: </p> <source>maven -DartifactId=maven-findbugs-plugin -DgroupId=maven-plugins -Dversion=1.0-SNAPSHOT plugin:download -Dmaven.repo.remote=http://www.ibiblio.org/maven,http://maven-plugins.sourceforge.net/repository</source> + <h4>Automatic Download</h4> + <p> + Instead, you can add a dependency in the project.xml file + so that anyone building your product will have the plugin + automatically downloaded and installed. +<source><![CDATA[ +<dependency> + <groupId>maven-plugins</groupId> + <artifactId>maven-(PLUGIN_NAME)-plugin</artifactId> + <version>(PLUGIN_VERSION)</version> + <type>plugin</type> +</dependency> +]]></source> + </p> </subsection> <subsection name="Snapshots"> <p> |
From: Jeff J. <jef...@us...> - 2007-07-07 23:02:32
|
jeffjensen 07/07/07 16:02:29 Modified: xdocs installing.xml Log: Attempt improvements and clarification. Revision Changes Path 1.12 +19 -12 maven-plugins/xdocs/installing.xml Index: installing.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/xdocs/installing.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- installing.xml 28 Jan 2007 16:37:40 -0000 1.11 +++ installing.xml 7 Jul 2007 23:02:28 -0000 1.12 @@ -5,13 +5,12 @@ </properties> <body> - <section name="Installation of Plugins"> + <section name="Installing Plugins"> <p> - Plugins available from this site need installing into the local Maven repository set-up before use. - There are 2 ways to do this. + Plugins need installing into the local Maven repository before use. </p> - <subsection name="Manual Install"> + <subsection name="Manual Download and Manual Install"> <p> After you have downloaded a plugin for Maven (from <a href="http://maven-plugins.sourceforge.net/repository/maven-plugins/">Maven-Plugins</a>, or from a different source), you should look in your Maven installation and you will find <B>$MAVEN_HOME/plugins/</B>. @@ -21,7 +20,7 @@ </p> </subsection> - <subsection name="Automatic Install"> + <subsection name="Manual Download and Automatic Install"> <h4>Make Your Project Aware of the SourceForge Repository</h4> <p> You can set up your Maven installation to "know about" the Maven-Plugins project. To do this you need @@ -40,9 +39,16 @@ For example to download the findbugs plugin, use: </p> <source>maven -DartifactId=maven-findbugs-plugin -DgroupId=maven-plugins -Dversion=1.0-SNAPSHOT plugin:download -Dmaven.repo.remote=http://www.ibiblio.org/maven,http://maven-plugins.sourceforge.net/repository</source> + </subsection> + <subsection name="Automatic Download and Automatic Install"> <h4>Automatic Download</h4> <p> - Instead, you can add a dependency in the project.xml file + Make your project aware of the SourceForge repository by + following the instructions above. + </p> + <p> + Instead of manually downloading, + you can add a dependency in the project.xml file so that anyone building your product will have the plugin automatically downloaded and installed. <source><![CDATA[ @@ -55,12 +61,13 @@ ]]></source> </p> </subsection> - <subsection name="Snapshots"> - <p> - If you need to test a snapshot, use the following snapshot repository as above: - <code>http://maven-plugins.sourceforge.net/snapshot-repository</code> - </p> - </subsection> + </section> + <section name="Using Snapshots"> + <p> + If you need to use/test a snapshot version instead of a released version, + use the following snapshot repository in the above instructions: + <code>http://maven-plugins.sourceforge.net/snapshot-repository</code> + </p> </section> </body> |