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

[jira] [Comment Edited] (MASSEMBLY-875) Maven 3.x is about 10x slower than 2.6

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

Stu edited comment on MASSEMBLY-875 at 1/31/18 10:56 PM:
---------------------------------------------------------

[~khmarbaise] - all your questions were already directly answered in the description.

The only thing that is not directly listed as answer is the memory settings - but from my maven pom, you can infer that they are the default settings ;)


was (Author: stuatasf):
[~khmarbaise] - all your questions were already directly answered in the description.

> Maven 3.x is about 10x slower than 2.6
> --------------------------------------
>
>                 Key: MASSEMBLY-875
>                 URL: https://issues.apache.org/jira/browse/MASSEMBLY-875
>             Project: Maven Assembly Plugin
>          Issue Type: Bug
>            Reporter: Stu
>            Priority: Minor
>
> In all our java projects, we have a fairly basic assembly configuration, something like this:
> {code:java}
> <plugin>
>     <artifactId>maven-assembly-plugin</artifactId>
>     <version>2.6</version>
>     <configuration>
>         <archive>
>             <manifest>
>                 <mainClass>org.x.x.x</mainClass>
>             </manifest>
>         </archive>
>         <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>{code}
> They all take about 10x longer with any 3.x.x version of the maven assembly plugin than the 2.6 version.
> This has been noticed by others:
> [https://stackoverflow.com/questions/9009232/what-sort-of-configuration-issues-or-problems-might-make-maven-assembly-plugin-g/24519615#24519615]
> But not reported as a bug that I could find.
> Although I could only justify "Minor" for the priority, this is really is a blocker for us moving to 3.x.x
> The upgrade is just not worth taking your build from < 10 sec to > 50 sec.
> (For this particular build, it went from about ~ 7 sec to ~ 57 sec.)



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