2014-02-05 04:11:55 -03:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2015-11-24 14:59:27 -03:00
|
|
|
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>
|
2014-02-05 04:11:55 -03:00
|
|
|
|
2015-11-24 14:59:27 -03:00
|
|
|
<groupId>com.droidquest</groupId>
|
|
|
|
<artifactId>dq</artifactId>
|
|
|
|
<version>2.7</version>
|
|
|
|
<packaging>jar</packaging>
|
2014-02-05 04:11:55 -03:00
|
|
|
|
2015-11-24 14:59:27 -03:00
|
|
|
<name>DroidQuest</name>
|
|
|
|
<url>https://github.com/ThomasFooteDQ/DroidQuest</url>
|
2014-02-05 04:11:55 -03:00
|
|
|
|
2015-11-24 14:59:27 -03:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2014-02-05 04:11:55 -03:00
|
|
|
|
2015-11-24 14:59:27 -03:00
|
|
|
<build>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<!-- Build an executable JAR -->
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<addClasspath>true</addClasspath>
|
|
|
|
<classpathPrefix>lib/</classpathPrefix>
|
|
|
|
<mainClass>com.droidquest.DQ</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2014-02-05 04:11:55 -03:00
|
|
|
|
2015-11-24 14:59:27 -03:00
|
|
|
<dependencies>
|
|
|
|
<!--
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<version>1.0.13</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>16.0</version>
|
|
|
|
</dependency>
|
|
|
|
-->
|
|
|
|
</dependencies>
|
2014-02-05 04:11:55 -03:00
|
|
|
</project>
|