File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change
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 >
You can’t perform that action at this time.
0 commit comments