Commit 3cdf32e5 by Billy Larru

[EDIT configurando pom.xml para generar el jar incluyendo las dependencias]

parent 04e6c7d0
......@@ -39,7 +39,33 @@
<artifactId>log4j-api</artifactId>
<version>2.3</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>salidasautomaticas.main.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</dependencies>
</plugins>
</build>
</project>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment