Skip to content

Commit e23c893

Browse files
committed
Update pom.xml
1 parent 62708df commit e23c893

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,28 @@
3131
<target>1.8</target>
3232
</configuration>
3333
</plugin>
34+
<plugin>
35+
<artifactId>maven-assembly-plugin</artifactId>
36+
<configuration>
37+
<archive>
38+
<manifest>
39+
<mainClass>ud.binmonkey.prog3_proyecto_server.Server</mainClass>
40+
</manifest>
41+
</archive>
42+
<descriptorRefs>
43+
<descriptorRef>Executable jar</descriptorRef>
44+
</descriptorRefs>
45+
</configuration>
46+
<executions>
47+
<execution>
48+
<id>make-assembly</id> <!-- this is used for inheritance merges -->
49+
<phase>package</phase> <!-- bind to the packaging phase -->
50+
<goals>
51+
<goal>single</goal>
52+
</goals>
53+
</execution>
54+
</executions>
55+
</plugin>
3456
</plugins>
3557
</build>
3658

0 commit comments

Comments
 (0)