<?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>
  <groupId>dev.openfeature</groupId>
  <artifactId>sdk</artifactId>
  <version>1.21.0</version>
  <name>OpenFeature Java SDK</name>
  <description>This is the Java implementation of OpenFeature, a vendor-agnostic abstraction library for evaluating
        feature flags.</description>
  <url>https://openfeature.dev</url>
  <licenses>
    <license>
      <name>Apache License 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>abrahms</id>
      <name>Justin Abrahms</name>
      <url>https://justin.abrah.ms/</url>
      <organization>eBay</organization>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:https://github.com/open-feature/java-sdk.git</connection>
    <developerConnection>scm:git:https://github.com/open-feature/java-sdk.git</developerConnection>
    <url>https://github.com/open-feature/java-sdk</url>
  </scm>
  <distributionManagement>
    <snapshotRepository>
      <id>central</id>
      <url>https://central.sonatype.com/repository/maven-snapshots/</url>
    </snapshotRepository>
  </distributionManagement>
  <dependencies>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <version>1.18.46</version>
      <scope>provided</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>com.github.spotbugs</groupId>
      <artifactId>spotbugs</artifactId>
      <version>4.10.2</version>
      <scope>provided</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>2.0.18</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>
