Package patterns into executable jars setup (#1092)

* Adding support for maven assembly plugin to generate executable jar with all dependencies in built

* Merge branch 'master' into issue-989

# Conflicts:
#	abstract-document/pom.xml
#	pom.xml

* Adding maven assemly plugin for projects with name A

* Update in format as per checkstyle, i.e. Spcae in place of tab with size of 2
This commit is contained in:
Hemant Bothra
2019-11-20 01:07:19 +05:30
committed by Ilkka Seppälä
parent 515b7e7134
commit e0b728c5e2
13 changed files with 1083 additions and 932 deletions

View File

@ -63,6 +63,21 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<configuration>
<archive>
<manifest>
<mainClass>com.iluwatar.image.microservice.ImageApplication</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>