<?xml version="1.0" encoding="UTF-8"?>
<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>
    <parent>
        <groupId>io.github.mjcro.toybox</groupId>
        <artifactId>root</artifactId>
        <version>0.3</version>
    </parent>

    <artifactId>api</artifactId>

    <name>MicroJ Toybox API</name>
    <description>API for Toybox toolkit</description>
    <url>https://github.com/mjcro/toybox-all</url>

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.deploy.skip>false</maven.deploy.skip>
    </properties>

    <dependencies>
        <dependency>
            <groupId>io.github.mjcro</groupId>
            <artifactId>interfaces</artifactId>
        </dependency>
    </dependencies>
</project>