<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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>
  <parent>
    <groupId>net.shrine</groupId>
    <artifactId>shrine-base</artifactId>
    <version>3.3.3</version>
    <relativePath>../../pom.xml</relativePath>
  </parent>
  <groupId>net.shrine</groupId>
  <artifactId>shrine-aim3-service</artifactId>
  <version>3.3.3</version>
  <name>SHRINE Aim3 Service</name>
  <dependencies>
    <dependency>
      <groupId>org.http4s</groupId>
      <artifactId>http4s-dsl_${scala-major-version}</artifactId>
      <version>${http4s-version}</version>
    </dependency>
    <dependency>
      <groupId>org.http4s</groupId>
      <artifactId>http4s-core_${scala-major-version}</artifactId>
      <version>${http4s-version}</version>
    </dependency>
    <dependency>
      <groupId>org.http4s</groupId>
      <artifactId>http4s-server_${scala-major-version}</artifactId>
      <version>${http4s-version}</version>
    </dependency>
    <dependency>
      <groupId>org.http4s</groupId>
      <artifactId>http4s-testing_${scala-major-version}</artifactId>
      <version>${http4s-version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>net.shrine</groupId>
      <artifactId>shrine-util</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>net.shrine</groupId>
      <artifactId>shrine-auth</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>net.shrine</groupId>
      <artifactId>shrine-adapter-service</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>com.h2database</groupId>
      <artifactId>h2</artifactId>
      <version>${h2-version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>net.shrine</groupId>
      <artifactId>shrine-util</artifactId>
      <version>${project.version}</version>
      <type>test-jar</type>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>net.shrine</groupId>
      <artifactId>shrine-adapter-service</artifactId>
      <version>${project.version}</version>
      <type>test-jar</type>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>net.alchim31.maven</groupId>
        <artifactId>scala-maven-plugin</artifactId>
      </plugin>
    </plugins>
  </build>
</project>
