Skip to content

Commit 4c8f661

Browse files
authored
pom.xml
1 parent 6c93ea4 commit 4c8f661

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

pom.xml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>Papajohn</groupId>
5+
<artifactId>Game</artifactId>
6+
<version>1.0-SNAPSHOT</version>
7+
<packaging>jar</packaging>
8+
<properties>
9+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10+
<maven.compiler.source>1.8</maven.compiler.source>
11+
<maven.compiler.target>1.8</maven.compiler.target>
12+
</properties>
13+
<build>
14+
<plugins>
15+
<plugin>
16+
<artifactId>maven-assembly-plugin</artifactId>
17+
<version>2.4</version>
18+
<configuration>
19+
<descriptorRefs>
20+
<descriptorRef>jar-with-dependencies</descriptorRef>
21+
</descriptorRefs>
22+
<archive>
23+
<manifest>
24+
<mainClass>game.Gameplay</mainClass>
25+
</manifest>
26+
</archive>
27+
</configuration>
28+
<executions>
29+
<execution>
30+
<id>make-assembly</id>
31+
<phase>package</phase>
32+
<goals>
33+
<goal>single</goal>
34+
</goals>
35+
</execution>
36+
</executions>
37+
</plugin>
38+
</plugins>
39+
</build>
40+
<name>DodgeGame</name>
41+
</project>

0 commit comments

Comments
 (0)