Skip to content

Commit 90a4a45

Browse files
committed
Merge pull request #11 from jsaneu/master
Convert to Maven project
2 parents d7c4dc4 + 127fc62 commit 90a4a45

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@
88
*.ear
99
/bin
1010
/releases
11+
/target
12+
13+
# Eclise Files
14+
.settings

pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
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>com.github.theholywaffle</groupId>
5+
<artifactId>teamspeak3</artifactId>
6+
<version>1.0.0</version>
7+
<name>TeamSpeak-3-Java-API</name>
8+
<description>An Java 7 implementation of TeamSpeak's 3 server query API</description>
9+
<build>
10+
<plugins>
11+
<plugin>
12+
<artifactId>maven-compiler-plugin</artifactId>
13+
<version>3.1</version>
14+
<configuration>
15+
<source>1.7</source>
16+
<target>1.7</target>
17+
</configuration>
18+
</plugin>
19+
</plugins>
20+
</build>
21+
</project>

0 commit comments

Comments
 (0)