You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Timo Westk?mper (JIRA)" <ji...@codehaus.org> on 2006/04/16 12:08:48 UTC

[jira] Created: (MNG-2230) The "How do I create documentation?" part of the "Maven Gettting Started Guide" features an invalid example

The "How do I create documentation?" part of the "Maven Gettting Started Guide" features an invalid example
-----------------------------------------------------------------------------------------------------------

         Key: MNG-2230
         URL: http://jira.codehaus.org/browse/MNG-2230
     Project: Maven 2
        Type: Bug

  Components: Documentation: Guides  
    Reporter: Timo Westkämper
    Priority: Minor


The guide gives earlier the following example of a simple project creation :

mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app


Afterwards it gives the following example under "How do I create documentation?":

"To get you jump started with Maven's documentation system you can use the archetype mechanism to generate a site for you without your existing project using the following command:

mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-site
"

When executed on the same top level where the first project is created, Maven 2 complains

my-app already exists - please run from a clean directory


When executed in the my-app directory the generated directory is different from the one presented.


A possible solution could be to replace the text under "How do I create documentation?" with (other artifactId and some other changes):

""
To get you jump started with Maven's documentation system you can use the archetype mechanism to generate a site for you without your existing project using the following command  :

mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app-site -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-site

If you take a look in your directory structure it should look like the following:

my-app-site
|-- pom.xml
`-- src
    `-- site
        |-- apt
        |   |-- format.apt
        |   `-- index.apt
        |-- fml
        |   `-- faq.fml
        |-- fr
        |   |-- apt
        |   |   |-- format.apt
        |   |   `-- index.apt
        |   |-- fml
        |   |   `-- faq.fml
        |   `-- xdoc
        |       `-- xdoc.xml
        |-- site.xml
        |-- site_fr.xml
        `-- xdoc
            `-- xdoc.xml 

""

Br,

Timo Westkämper.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (MNG-2230) The "How do I create documentation?" part of the "Maven Gettting Started Guide" features an invalid example

Posted by "Kenney Westerhof (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-2230?page=all ]

Kenney Westerhof updated MNG-2230:
----------------------------------

    Fix Version/s:     (was: 2.0.5)
                   2.0.6

> The "How do I create documentation?" part of the "Maven Gettting Started Guide" features an invalid example
> -----------------------------------------------------------------------------------------------------------
>
>                 Key: MNG-2230
>                 URL: http://jira.codehaus.org/browse/MNG-2230
>             Project: Maven 2
>          Issue Type: Bug
>          Components: Documentation: Guides
>            Reporter: Timo Westkämper
>            Priority: Minor
>             Fix For: 2.0.6
>
>
> The guide gives earlier the following example of a simple project creation :
> mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app
> Afterwards it gives the following example under "How do I create documentation?":
> "To get you jump started with Maven's documentation system you can use the archetype mechanism to generate a site for you without your existing project using the following command:
> mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-site
> "
> When executed on the same top level where the first project is created, Maven 2 complains
> my-app already exists - please run from a clean directory
> When executed in the my-app directory the generated directory is different from the one presented.
> A possible solution could be to replace the text under "How do I create documentation?" with (other artifactId and some other changes):
> ""
> To get you jump started with Maven's documentation system you can use the archetype mechanism to generate a site for you without your existing project using the following command  :
> mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app-site -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-site
> If you take a look in your directory structure it should look like the following:
> my-app-site
> |-- pom.xml
> `-- src
>     `-- site
>         |-- apt
>         |   |-- format.apt
>         |   `-- index.apt
>         |-- fml
>         |   `-- faq.fml
>         |-- fr
>         |   |-- apt
>         |   |   |-- format.apt
>         |   |   `-- index.apt
>         |   |-- fml
>         |   |   `-- faq.fml
>         |   `-- xdoc
>         |       `-- xdoc.xml
>         |-- site.xml
>         |-- site_fr.xml
>         `-- xdoc
>             `-- xdoc.xml 
> ""
> Br,
> Timo Westkämper.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] Closed: (MNG-2230) The "How do I create documentation?" part of the "Maven Gettting Started Guide" features an invalid example

Posted by "Vincent Siveton (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-2230?page=all ]

Vincent Siveton closed MNG-2230.
--------------------------------

         Assignee: Vincent Siveton
       Resolution: Fixed
    Fix Version/s:     (was: 2.0.6)
                   2.0.5

reviewed this guide as suggested

> The "How do I create documentation?" part of the "Maven Gettting Started Guide" features an invalid example
> -----------------------------------------------------------------------------------------------------------
>
>                 Key: MNG-2230
>                 URL: http://jira.codehaus.org/browse/MNG-2230
>             Project: Maven 2
>          Issue Type: Bug
>          Components: Documentation: Guides
>            Reporter: Timo Westkämper
>         Assigned To: Vincent Siveton
>            Priority: Minor
>             Fix For: 2.0.5
>
>
> The guide gives earlier the following example of a simple project creation :
> mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app
> Afterwards it gives the following example under "How do I create documentation?":
> "To get you jump started with Maven's documentation system you can use the archetype mechanism to generate a site for you without your existing project using the following command:
> mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-site
> "
> When executed on the same top level where the first project is created, Maven 2 complains
> my-app already exists - please run from a clean directory
> When executed in the my-app directory the generated directory is different from the one presented.
> A possible solution could be to replace the text under "How do I create documentation?" with (other artifactId and some other changes):
> ""
> To get you jump started with Maven's documentation system you can use the archetype mechanism to generate a site for you without your existing project using the following command  :
> mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app-site -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-site
> If you take a look in your directory structure it should look like the following:
> my-app-site
> |-- pom.xml
> `-- src
>     `-- site
>         |-- apt
>         |   |-- format.apt
>         |   `-- index.apt
>         |-- fml
>         |   `-- faq.fml
>         |-- fr
>         |   |-- apt
>         |   |   |-- format.apt
>         |   |   `-- index.apt
>         |   |-- fml
>         |   |   `-- faq.fml
>         |   `-- xdoc
>         |       `-- xdoc.xml
>         |-- site.xml
>         |-- site_fr.xml
>         `-- xdoc
>             `-- xdoc.xml 
> ""
> Br,
> Timo Westkämper.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] Updated: (MNG-2230) The "How do I create documentation?" part of the "Maven Gettting Started Guide" features an invalid example

Posted by "John Casey (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-2230?page=all ]

John Casey updated MNG-2230:
----------------------------

    Fix Version: 2.0.5

> The "How do I create documentation?" part of the "Maven Gettting Started Guide" features an invalid example
> -----------------------------------------------------------------------------------------------------------
>
>          Key: MNG-2230
>          URL: http://jira.codehaus.org/browse/MNG-2230
>      Project: Maven 2
>         Type: Bug

>   Components: Documentation: Guides
>     Reporter: Timo Westkämper
>     Priority: Minor
>      Fix For: 2.0.5

>
>
> The guide gives earlier the following example of a simple project creation :
> mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app
> Afterwards it gives the following example under "How do I create documentation?":
> "To get you jump started with Maven's documentation system you can use the archetype mechanism to generate a site for you without your existing project using the following command:
> mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-site
> "
> When executed on the same top level where the first project is created, Maven 2 complains
> my-app already exists - please run from a clean directory
> When executed in the my-app directory the generated directory is different from the one presented.
> A possible solution could be to replace the text under "How do I create documentation?" with (other artifactId and some other changes):
> ""
> To get you jump started with Maven's documentation system you can use the archetype mechanism to generate a site for you without your existing project using the following command  :
> mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app-site -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-site
> If you take a look in your directory structure it should look like the following:
> my-app-site
> |-- pom.xml
> `-- src
>     `-- site
>         |-- apt
>         |   |-- format.apt
>         |   `-- index.apt
>         |-- fml
>         |   `-- faq.fml
>         |-- fr
>         |   |-- apt
>         |   |   |-- format.apt
>         |   |   `-- index.apt
>         |   |-- fml
>         |   |   `-- faq.fml
>         |   `-- xdoc
>         |       `-- xdoc.xml
>         |-- site.xml
>         |-- site_fr.xml
>         `-- xdoc
>             `-- xdoc.xml 
> ""
> Br,
> Timo Westkämper.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira