<?xml version="1.0" encoding="UTF-8"?>
<!--
 File: pom.xml

 Copyright (c) 2017 Oracle and/or its affiliates. All rights reserved.

 You may not use this file except in compliance with the Universal Permissive
 License (UPL), Version 1.0 (the "License.")

 You may obtain a copy of the License at https://opensource.org/licenses/UPL.

 Unless required by applicable law or agreed to in writing, software distributed
 under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 CONDITIONS OF ANY KIND, either express or implied.

 See the License for the specific language governing permissions and limitations
 under the License.
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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>
  <groupId>com.oracle.cloud.caching</groupId>
  <artifactId>cache-client-api</artifactId>
  <version>1.0.0</version>
  <name>ACCS Application Cache Java Client API</name>
  <description>A Java Client API to access ACCS Application Cache.</description>
  <url>https://github.com/oracle/accs-caching/cache-client-api/</url>
  <licenses>
    <license>
      <name>Common Development and Distribution License 1.0 ("CDDL")</name>
      <url>http://opensource.org/licenses/CDDL-1.0</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>Aleksandar Seovic</name>
      <email>aleksandar.seovic@oracle.com</email>
      <organization>Oracle Corporation</organization>
    </developer>
    <developer>
      <name>Tim Middleton</name>
      <email>tim.middleton@oracle.com</email>
      <organization>Oracle Corporation</organization>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:https://github.com/oracle/accs-caching.git/cache-client-api</connection>
    <developerConnection>scm:git:https://github.com/oracle/accs-caching.git/cache-client-api</developerConnection>
    <tag>accs-caching-1.0.0</tag>
    <url>https://github.com/oracle/accs-caching.git/cache-client-api</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>com.oracle.cloud.caching</groupId>
      <artifactId>cache-client-protocol</artifactId>
      <version>1.0.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.glassfish.jersey.core</groupId>
      <artifactId>jersey-client</artifactId>
      <version>2.22.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>io.dropwizard.metrics</groupId>
      <artifactId>metrics-core</artifactId>
      <version>3.1.0</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>
