You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Karl-Heinz Marbaise (JIRA)" <ji...@codehaus.org> on 2015/02/16 17:36:18 UTC

[jira] (MSHADE-187) Duplicate WARNINGs during build and file in project root

     [ https://jira.codehaus.org/browse/MSHADE-187?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Karl-Heinz Marbaise updated MSHADE-187:
---------------------------------------

    Description: 
Currently i'm getting the following messages during a build with maven-shade-plugin:
{noformat}
[INFO] Dependency-reduced POM written at: /Users/kama/ws-git/maven-test-profiler/dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: /Users/kama/ws-git/maven-test-profiler/dependency-reduced-pom.xml
{noformat}
This is the configuration which produces this:
{code}
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-shade-plugin</artifactId>
        <configuration>
          <artifactSet>
            <includes>
              <include>org.apache.maven.profiler:*</include>
              <include>org.apache.maven.plugins:*</include>
              <include>org.apache.maven.surefire:*</include>
            </includes>
            <excludes>
              <exclude>org.sonatype.plexus:*</exclude>
              <exclude>javax:*</exclude>
            </excludes>
          </artifactSet>
        </configuration>
        <executions>
          <execution>
            <goals>
              <goal>shade</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
{code}


  was:
Currently i'm getting the following messages during a build with maven-shade-plugin:
{noformat}
[INFO] Dependency-reduced POM written at: /Users/kama/ws-git/maven-test-profiler/dependency-reduced-pom.xml
[INFO] Dependency-reduced POM written at: /Users/kama/ws-git/maven-test-profiler/dependency-reduced-pom.xml
{noformat}
This is the configuration which produces this:
{code:xml}
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-shade-plugin</artifactId>
        <configuration>
          <artifactSet>
            <includes>
              <include>org.apache.maven.profiler:*</include>
              <include>org.apache.maven.plugins:*</include>
              <include>org.apache.maven.surefire:*</include>
            </includes>
            <excludes>
              <exclude>org.sonatype.plexus:*</exclude>
              <exclude>javax:*</exclude>
            </excludes>
          </artifactSet>
        </configuration>
        <executions>
          <execution>
            <goals>
              <goal>shade</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
{code:xml}



> Duplicate WARNINGs during build and file in project root
> --------------------------------------------------------
>
>                 Key: MSHADE-187
>                 URL: https://jira.codehaus.org/browse/MSHADE-187
>             Project: Maven Shade Plugin
>          Issue Type: Improvement
>    Affects Versions: 2.3
>            Reporter: Karl-Heinz Marbaise
>            Priority: Minor
>
> Currently i'm getting the following messages during a build with maven-shade-plugin:
> {noformat}
> [INFO] Dependency-reduced POM written at: /Users/kama/ws-git/maven-test-profiler/dependency-reduced-pom.xml
> [INFO] Dependency-reduced POM written at: /Users/kama/ws-git/maven-test-profiler/dependency-reduced-pom.xml
> {noformat}
> This is the configuration which produces this:
> {code}
>       <plugin>
>         <groupId>org.apache.maven.plugins</groupId>
>         <artifactId>maven-shade-plugin</artifactId>
>         <configuration>
>           <artifactSet>
>             <includes>
>               <include>org.apache.maven.profiler:*</include>
>               <include>org.apache.maven.plugins:*</include>
>               <include>org.apache.maven.surefire:*</include>
>             </includes>
>             <excludes>
>               <exclude>org.sonatype.plexus:*</exclude>
>               <exclude>javax:*</exclude>
>             </excludes>
>           </artifactSet>
>         </configuration>
>         <executions>
>           <execution>
>             <goals>
>               <goal>shade</goal>
>             </goals>
>           </execution>
>         </executions>
>       </plugin>
> {code}



--
This message was sent by Atlassian JIRA
(v6.1.6#6162)