<?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/maven-v4_0_0.xsd">
  <parent>
    <artifactId>tiny-serializer-parent</artifactId>
    <groupId>eu.toolchain.serializer</groupId>
    <version>1.4.2</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>tiny-serializer-examples</artifactId>
  <name>A tiny serialization framework for Java (Examples)</name>
  <description>Examples for TinySerializer.</description>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <version>2.0</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <version>1.12.6</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>eu.toolchain.serializer</groupId>
      <artifactId>tiny-serializer-processor</artifactId>
      <version>1.4.2</version>
      <scope>provided</scope>
      <exclusions>
        <exclusion>
          <artifactId>javapoet</artifactId>
          <groupId>com.squareup</groupId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
</project>

