| POM: |
Show
hide
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>net.wildfyre</groupId>
<artifactId>wflib-java</artifactId>
<version>0.7</version>
<name>WildFyre Client API</name>
<description>The WildFyre client API lets you connect to the servers from a Java or Android app.</description>
<url>https://wildfyre.net</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>clovis-ai</id>
<name>Ivan Canet</name>
<email>ivan.canet@gmail.com</email>
</developer>
</developers>
<scm>
<connection>https://phabricator.wildfyre.net/source/libwf-java.git</connection>
<developerConnection>https://phabricator.wildfyre.net/source/libwf-java.git</developerConnection>
<url>https://phabricator.wildfyre.net/source/libwf-java/</url>
</scm>
<dependencies>
<dependency>
<groupId>com.eclipsesource.minimal-json</groupId>
<artifactId>minimal-json</artifactId>
<version>0.9.5</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
|