plutoengine/plutospritesheet/pom.xml

46 lines
1.5 KiB
XML

<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>cz.tefek</groupId>
<artifactId>plutospritesheet</artifactId>
<version>0.2</version>
<properties>
<maven.compiler.release>11</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<dependencies>
<dependency>
<groupId>cz.tefek</groupId>
<artifactId>plutotexturing</artifactId>
<version>0.1</version>
</dependency>
<dependency>
<groupId>cz.tefek</groupId>
<artifactId>plutoframebuffer</artifactId>
<version>0.1</version>
</dependency>
<dependency>
<groupId>cz.tefek</groupId>
<artifactId>plutomesher</artifactId>
<version>0.2</version>
</dependency>
<dependency>
<groupId>cz.tefek</groupId>
<artifactId>plutoshader</artifactId>
<version>0.3</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<release>11</release>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
</project>