-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
43 lines (38 loc) · 1.07 KB
/
pom.xml
File metadata and controls
43 lines (38 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>name.broughton.reece</groupId>
<artifactId>GameTerminalEmulator</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Game Terminal Emulator</name>
<description>Library to make it easy to embed a game terminal emulator in your game.</description>
<contributors>
<contributor>
<name>Reece Broughton</name>
</contributor>
<contributor>
<name>Daniel K Lyons</name>
<email>fusion@storytotell.org</email>
</contributor>
</contributors>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
</dependencies>
</project>