Added generation of pom to converter

This commit is contained in:
leandrohw 2017-03-28 11:56:24 -06:00
parent f111971d3d
commit a5545947c2
5 changed files with 109 additions and 89 deletions

25
pom.xml
View file

@ -64,32 +64,7 @@
</testExcludes>
</configuration>
</plugin>
<!-- Build an executable JAR -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>build-converter</id>
<configuration>
<archive>
<manifest>
<mainClass>edu.utah.ece.async.Converter</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<finalName>converter</finalName>
</configuration>
<phase>package</phase>
<goals>
<goal>assembly</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<!-- todo: add any other plugins needed here -->
</build>
</project>