<?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>com.vlkan.hrrs</groupId>
    <artifactId>hrrs-parent</artifactId>
    <version>0.7.0</version>
    <relativePath>../..</relativePath>
  </parent>
  <groupId>com.vlkan.hrrs</groupId>
  <artifactId>hrrs-example-jaxrs</artifactId>
  <version>0.7.0</version>
  <packaging>war</packaging>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <properties>
    <jaxrs-ri.version>3.0.4</jaxrs-ri.version>
    <javax.ws.rs-api.version>2.1.1</javax.ws.rs-api.version>
  </properties>
  <dependencies>
    <dependency>
      <groupId>com.vlkan.hrrs</groupId>
      <artifactId>hrrs-servlet-filter-base64</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>javax.servlet-api</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>javax.ws.rs</groupId>
      <artifactId>javax.ws.rs-api</artifactId>
      <version>${javax.ws.rs-api.version}</version>
    </dependency>
    <dependency>
      <groupId>org.glassfish.jersey.bundles</groupId>
      <artifactId>jaxrs-ri</artifactId>
      <version>${jaxrs-ri.version}</version>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-log4j12</artifactId>
    </dependency>
  </dependencies>
</project>
