| <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"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>net.glowstone</groupId> | |
| <artifactId>glowstone</artifactId> | |
| <version>0.0.1-SNAPSHOT</version> | |
| <name>Glowstone</name> | |
| <url>http://github.com/SpaceManiac/Glowstone</url> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <version>2.0.2</version> | |
| <configuration> | |
| <source>1.5</source> | |
| <target>1.5</target> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| <repositories> | |
| <repository> | |
| <id>jboss</id> | |
| <name>JBoss Nexus</name> | |
| <layout>default</layout> | |
| <url>https://repository.jboss.org/nexus/content/groups/public/</url> | |
| <snapshots> | |
| <enabled>false</enabled> | |
| </snapshots> | |
| </repository> | |
| </repositories> | |
| <dependencies> | |
| <dependency> | |
| <groupId>org.bukkit</groupId> | |
| <artifactId>bukkit</artifactId> | |
| <version>0.0.1-SNAPSHOT</version> | |
| <type>jar</type> | |
| <scope>compile</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.jboss.netty</groupId> | |
| <artifactId>netty</artifactId> | |
| <version>3.2.4.Final</version> | |
| <type>jar</type> | |
| <scope>compile</scope> | |
| </dependency> | |
| </dependencies> | |
| </project> |