2021-02-06 18:55:55 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-01-10 20:29:37 -05:00
|
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2021-02-06 18:55:55 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2022-01-10 20:29:01 -05:00
|
|
|
<groupId>ca.blarg</groupId>
|
2021-02-06 18:55:55 -05:00
|
|
|
<artifactId>gdx-toolbox</artifactId>
|
2022-01-10 21:11:54 -05:00
|
|
|
<version>0.2-SNAPSHOT</version>
|
2021-02-06 18:55:55 -05:00
|
|
|
|
|
|
|
<name>gdx-toolbox</name>
|
2022-01-10 20:29:37 -05:00
|
|
|
<description>Helper classes, methods, and other things built on top of libGDX</description>
|
|
|
|
<url>https://github.com/gered/gdx-toolbox</url>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>MIT License</name>
|
|
|
|
<url>https://opensource.org/licenses/mit-license.php</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<url>git@github.com:gered/gdx-toolbox.git</url>
|
|
|
|
<connection>scm:git:${project.scm.url}</connection>
|
|
|
|
<developerConnection>scm:git:${project.scm.url}</developerConnection>
|
2022-01-10 21:11:54 -05:00
|
|
|
<tag>HEAD</tag>
|
2022-01-10 20:29:37 -05:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>Gered King</name>
|
|
|
|
<email>gered@blarg.ca</email>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
2021-02-06 18:55:55 -05:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<maven.compiler.target>1.6</maven.compiler.target>
|
|
|
|
<maven.compiler.source>1.6</maven.compiler.source>
|
|
|
|
|
|
|
|
<gdx.version>1.0.0</gdx.version>
|
|
|
|
</properties>
|
|
|
|
|
2022-01-10 20:29:37 -05:00
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
<repository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
2021-02-06 18:55:55 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.badlogicgames.gdx</groupId>
|
|
|
|
<artifactId>gdx</artifactId>
|
|
|
|
<version>${gdx.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.badlogicgames.gdx</groupId>
|
|
|
|
<artifactId>gdx-freetype</artifactId>
|
|
|
|
<version>${gdx.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2022-01-10 20:29:37 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>3.2.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>3.3.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<additionalOptions>
|
|
|
|
<additionalOption>-Xdoclint:none</additionalOption>
|
|
|
|
</additionalOptions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>3.0.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
<version>2.5.3</version>
|
|
|
|
<configuration>
|
|
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
|
|
|
<tagNameFormat>v@{project.version}</tagNameFormat>
|
|
|
|
<goals>deploy</goals>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2021-02-06 18:55:55 -05:00
|
|
|
</project>
|