We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62708df commit e23c893Copy full SHA for e23c893
pom.xml
@@ -31,6 +31,28 @@
31
<target>1.8</target>
32
</configuration>
33
</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>
56
</plugins>
57
</build>
58
0 commit comments