Skip to content

Commit

Permalink
Remove dependency copying (#376)
Browse files Browse the repository at this point in the history
There doesn't seem to be a reason to have this phase. Perhaps there was
one before? All the required dependencies are added to the final JAR by
the `maven-shade-plugin` in the `package` phase anyway. This dependency
copying just seems like a waste of time.
  • Loading branch information
mpaluchowski authored and ryaneberly committed Jul 28, 2017
1 parent d738ef4 commit 56bbf8d
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -143,20 +143,6 @@

<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<phase>process-sources</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${targetdirectory}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
Expand Down

0 comments on commit 56bbf8d

Please sign in to comment.