<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>net.nilosplace</groupId>
		<artifactId>nilosplace-parent</artifactId>
		<version>1.0.18</version>
	</parent>
	<artifactId>object-storage</artifactId>
	<packaging>jar</packaging>
	<name>Object Storage Helper</name>
	<description>This software is use to save / retrieve objects to / from disk</description>
	<url>https://gitlab.com/nilosedge/nilosplace-parent/-/tree/master/object-storage</url>
	<properties>
		<compiler-plugin.version>3.8.1</compiler-plugin.version>
		<maven.compiler.parameters>true</maven.compiler.parameters>
		<maven.compiler.source>11</maven.compiler.source>
		<maven.compiler.target>11</maven.compiler.target>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
	</properties>
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.13.2</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>${project.groupId}</groupId>
			<artifactId>paralell-gzip</artifactId>
			<version>${project.version}</version>
		</dependency>
	</dependencies>
</project>
