Skip to content

Commit

Permalink
Adding maven shade plugin to Http library
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromecomte committed Jun 24, 2020
1 parent b3b3149 commit b0412a0
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions step-library-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,19 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit b0412a0

Please sign in to comment.