mirror of https://github.com/apache/maven.git
o Adding some notes.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@291490 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bc92124d6d
commit
930e27d14e
|
@ -17,7 +17,6 @@
|
||||||
</site>
|
</site>
|
||||||
</distributionManagement>
|
</distributionManagement>
|
||||||
<reporting>
|
<reporting>
|
||||||
<excludeDefaults>true</excludeDefaults>
|
|
||||||
<!-- TODO: disable dependencies -->
|
<!-- TODO: disable dependencies -->
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|
|
@ -7,3 +7,5 @@
|
||||||
------
|
------
|
||||||
|
|
||||||
Philosophy of Maven
|
Philosophy of Maven
|
||||||
|
|
||||||
|
~~I had a couple of slides on this in my javaZone presentation - trygve
|
||||||
|
|
|
@ -12,8 +12,8 @@ Maven Getting Started Guide
|
||||||
a cookbook with self-contained references and solutions for common usecases. For the first time user it is suggested that
|
a cookbook with self-contained references and solutions for common usecases. For the first time user it is suggested that
|
||||||
you step through the material in a sequential fashion, but for users more familiar with Maven the guide endeavours
|
you step through the material in a sequential fashion, but for users more familiar with Maven the guide endeavours
|
||||||
to provide a quick solution for the need at hand. It is assumed at this point that you have downloaded Maven and
|
to provide a quick solution for the need at hand. It is assumed at this point that you have downloaded Maven and
|
||||||
installed Maven on your local machine. If you have not done so please refer to the {{{../download.html}}Download and
|
installed Maven on your local machine. If you have not done so please refer to the
|
||||||
Installation} instructions.
|
{{{../download.html}}Download and Installation} instructions.
|
||||||
|
|
||||||
* What is Maven?
|
* What is Maven?
|
||||||
|
|
||||||
|
@ -30,8 +30,6 @@ Maven Getting Started Guide
|
||||||
|
|
||||||
* Managing releases
|
* Managing releases
|
||||||
|
|
||||||
* Managing releases
|
|
||||||
|
|
||||||
If you want to know about the Maven itself you can check out {{{../philosophy-of-maven.html}}The Philosophy of Maven} and
|
If you want to know about the Maven itself you can check out {{{../philosophy-of-maven.html}}The Philosophy of Maven} and
|
||||||
the {{{../history-of-maven.html}}The History of Maven}. Now we want to move on to why you, the user, can benefit from
|
the {{{../history-of-maven.html}}The History of Maven}. Now we want to move on to why you, the user, can benefit from
|
||||||
using Maven.
|
using Maven.
|
||||||
|
@ -242,7 +240,7 @@ recommended way is finally settled:
|
||||||
|
|
||||||
~~* How do I deploy my jar in my remote repository?
|
~~* How do I deploy my jar in my remote repository?
|
||||||
|
|
||||||
~~* How do I deploy my jar in IBiblio?
|
~~* How do I deploy my jar in Ibiblio?
|
||||||
|
|
||||||
~~* How do I create documentation?
|
~~* How do I create documentation?
|
||||||
~~ o Explain the different formats APT/xdoc/docbook/FAQML
|
~~ o Explain the different formats APT/xdoc/docbook/FAQML
|
||||||
|
@ -313,11 +311,12 @@ Merged:
|
||||||
|
|
||||||
System vars are accessed implicitly in m2...try:
|
System vars are accessed implicitly in m2...try:
|
||||||
|
|
||||||
|
+-----+
|
||||||
|
|
||||||
<configuration>
|
<configuration>
|
||||||
~ <debug>${build.debug}</debug>
|
<debug>${build.debug}</debug>
|
||||||
~ <source>${build.jdk}</source>
|
<source>${build.jdk}</source>
|
||||||
~ <target>${build.jdk}</target>
|
<target>${build.jdk}</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|
||||||
|
+-----+
|
||||||
+-----+
|
|
||||||
|
|
|
@ -8,4 +8,6 @@
|
||||||
|
|
||||||
Introduction to the Lifecycle
|
Introduction to the Lifecycle
|
||||||
|
|
||||||
The content from the current lifecycle document will be incorporated here.
|
The content from the current lifecycle document will be incorporated here.
|
||||||
|
|
||||||
|
~~How do I make my own lifecycle
|
||||||
|
|
|
@ -11,16 +11,16 @@ Releasing
|
||||||
|
|
||||||
[[1]] Preparing the release.
|
[[1]] Preparing the release.
|
||||||
|
|
||||||
[[2]] Performing the release.
|
[[1]] Performing the release.
|
||||||
|
|
||||||
Preparing the release
|
Preparing the release
|
||||||
|
|
||||||
The <<<release:prepare>>> goal will:
|
The <<<release:prepare>>> goal will:
|
||||||
|
|
||||||
[[1]] Verify that there are no uncommitted changes in the checkout
|
[[1]] Verify that there are no uncommitted changes in the checkout
|
||||||
[[2]] Prompt for a desired version and tag name
|
[[1]] Prompt for a desired version and tag name
|
||||||
[[3]] Modify the pom.xml
|
[[1]] Modify the pom.xml
|
||||||
[[4]] Tag the entire source tree with the new tag name
|
[[1]] Tag the entire source tree with the new tag name
|
||||||
|
|
||||||
-----
|
-----
|
||||||
m2 release:prepare -DtagBase=svn+ssh://svn.codehaus.org/home/projects/plexus/scm/tags
|
m2 release:prepare -DtagBase=svn+ssh://svn.codehaus.org/home/projects/plexus/scm/tags
|
||||||
|
|
Loading…
Reference in New Issue