featbit-java-server-openfeature-provider
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>co.featbit</groupId> <artifactId>featbit-java-server-openfeature-provider</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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> <groupId>co.featbit</groupId> <artifactId>featbit-java-server-openfeature-provider</artifactId> <version>1.0.0</version> <name>featbit/featbit-java-server-openfeature-provider</name> <url>https://github.com/featbit/featbit-java-server-openfeature-provider</url> <description> This is the Java Server Side SDK for the feature management platform FeatBit. It is intended for use in a multi-user Java server applications. </description> <licenses> <license> <name>MIT License</name> <url>https://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>DIAN SUN</name> <email>featbit.master@gmail.com</email> <organization>FeatBit</organization> <organizationUrl>https://github.com/featbit</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git@github.com:featbit/featbit-java-server-openfeature-provider.git</connection> <url>https://github.com/featbit/featbit-java-server-openfeature-provider</url> </scm> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <openfeature-version>[1.7.0,2.0.0)</openfeature-version> <featbit-java-sdk-version>[1.4.0,2.0.0)</featbit-java-sdk-version> <junit-version>5.8.2</junit-version> <slf4j-version>[1.7.0,)</slf4j-version> </properties> <dependencies> <dependency> <groupId>dev.openfeature</groupId> <artifactId>sdk</artifactId> <version>${openfeature-version}</version> </dependency> <dependency> <groupId>co.featbit</groupId> <artifactId>featbit-java-sdk</artifactId> <version>${featbit-java-sdk-version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j-version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit-version}</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>analyze-only-in-package</id> <phase>package</phase> <goals> <goal>analyze-only</goal> </goals> <configuration> <!-- configure the plugin here --> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M7</version> </plugin> </plugins> </build> </project>