You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Leonardo Uribe (Commented) (JIRA)" <de...@myfaces.apache.org> on 2011/10/10 20:38:30 UTC

[jira] [Commented] (MYFACES-3307) update myfaces parent pom to use latest apache-parent and other dependencies

    [ https://issues.apache.org/jira/browse/MYFACES-3307?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13124378#comment-13124378 ] 

Leonardo Uribe commented on MYFACES-3307:
-----------------------------------------

I think it is safe to move to maven 3 and include maven-site-plugin. I have seen some cases where site documentation is generated correctly using maven2 but not on maven3. In practice, before deploy site using maven 3 I have to add the following on each parent pom.xml per project:

    <build>
        <!-- Since Maven 3.0, this is required to add scpexe as protocol for deploy. -->
        <extensions>
          <extension>
            <groupId>org.apache.maven.wagon</groupId>
            <artifactId>wagon-ssh-external</artifactId>
            <version>1.0-beta-7</version>
          </extension>
        </extensions>

....

                <!-- SITE GENERATION -->
                <plugin>
                    <artifactId>maven-javadoc-plugin</artifactId>
                    <version>2.8</version>
                </plugin>
                <plugin>
                  <artifactId>maven-site-plugin</artifactId>
                  <version>3.0</version>
                </plugin>
                <plugin>
                  <artifactId>maven-project-info-reports-plugin</artifactId>
                  <version>2.4</version>
                </plugin>
                <plugin>
                    <artifactId>maven-jxr-plugin</artifactId>
                    <version>2.3</version>
                </plugin>
                <plugin>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>taglist-maven-plugin</artifactId>
                    <version>2.4</version>
                </plugin>
                <plugin>
                    <artifactId>maven-changelog-plugin</artifactId>
                    <version>2.2</version>
                </plugin>
            </plugins>
        </pluginManagement>

                
> update myfaces parent pom to use latest apache-parent and other dependencies
> ----------------------------------------------------------------------------
>
>                 Key: MYFACES-3307
>                 URL: https://issues.apache.org/jira/browse/MYFACES-3307
>             Project: MyFaces Core
>          Issue Type: Improvement
>          Components: build process
>    Affects Versions: 2.1.2
>            Reporter: Mark Struberg
>            Assignee: Mark Struberg
>
> This is needed because we have an issue in the current setup of the checkstyle plugin

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira