flagsmith
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.openfeature.contrib.providers</groupId> <artifactId>flagsmith</artifactId> <version>0.0.10</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>dev.openfeature.contrib</groupId> <artifactId>parent</artifactId> <version>0.1.0</version> <relativePath>../../pom.xml</relativePath> </parent> <groupId>dev.openfeature.contrib.providers</groupId> <artifactId>flagsmith</artifactId> <version>0.0.10</version> <!--x-release-please-version --> <name>flagsmith</name> <description>Flagsmith provider for Java</description> <url>https://flagsmith.com</url> <developers> <developer> <id>ajhelsby</id> <name>Andrew Helsby</name> <organization>Flagsmith</organization> <url>https://flagsmith.com</url> </developer> </developers> <dependencies> <!-- Inherits dev.openfeature.javasdk and the test dependencies from the parent pom --> <dependency> <groupId>com.flagsmith</groupId> <artifactId>flagsmith-java-client</artifactId> <version>7.4.3</version> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>4.12.0</version> </dependency> <!-- test --> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>mockwebserver</artifactId> <version>4.12.0</version> <scope>test</scope> </dependency> </dependencies> </project>