You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2018/07/31 19:26:00 UTC

[jira] [Commented] (MNGSITE-343) Correct the documentation for the plugin management

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

ASF GitHub Bot commented on MNGSITE-343:
----------------------------------------

khmarbaise commented on issue #25: [MNG-6451] doc updated to be more clear about the plugin management
URL: https://github.com/apache/maven-site/pull/25#issuecomment-409338825
 
 
   First I have moved the issue to the correct location https://issues.apache.org/jira/browse/MNGSITE-343 and it would be great if you could change your commit message accordingly ...and I would appreciate to merge you fix....

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


> Correct the documentation for the plugin management
> ---------------------------------------------------
>
>                 Key: MNGSITE-343
>                 URL: https://issues.apache.org/jira/browse/MNGSITE-343
>             Project: Maven Project Web Site
>          Issue Type: Improvement
>            Reporter: Martin Prochazka
>            Priority: Minor
>              Labels: easyfix
>
> In the documentation of the plugin management element it says that the plugin management relates *only* to children, however maven behaves differently. The following pom creates also a jar with dependencies, even by documentation it should not be configured to do so.
> The solution is to change a few words in the documentation.
> {code:java}
> <?xml version="1.0" encoding="UTF-8"?>
> <project xmlns="http://maven.apache.org/POM/4.0.0"
>          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
>     <modelVersion>4.0.0</modelVersion>
>     <groupId>someproject</groupId>
>     <artifactId>someartifact</artifactId>
>     <version>1.0-SNAPSHOT</version>
>     <build>
>         <pluginManagement>
>             <plugins>
>                 <plugin>
>                     <artifactId>maven-assembly-plugin</artifactId>
>                     <version>3.1.0</version>
>                     <configuration>
>                         <descriptorRefs>
>                             <descriptorRef>jar-with-dependencies</descriptorRef>
>                         </descriptorRefs>
>                     </configuration>
>                     <executions>
>                         <execution>
>                             <id>make-assembly</id> 
>                             <phase>package</phase>
>                             <goals>
>                                 <goal>single</goal>
>                             </goals>
>                         </execution>
>                     </executions>
>                 </plugin>
>             </plugins>
>         </pluginManagement>
>         <plugins>
>             <plugin>
>                 <artifactId>maven-assembly-plugin</artifactId>
>             </plugin>
>         </plugins>
>     </build>
> </project>
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)