ff4j-core
Used in: 39 components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
Overview
Description
FF4J, stands for Feature Flipping for Java, helps you implementing the 'feature toggle' agile
development
practice.
Features (services/behaviour/treatments/screen parts) can be enabled and disabled at runtime but
also limited to
an authorized
sub-set of users (e.g : beta-testers for beta feature). Once the feature is enabled and granted
you can
implement your own strategy
to flip through custom FlippingStrategy.
Snippets
<dependency> <groupId>org.ff4j</groupId> <artifactId>ff4j-core</artifactId> <version>2.1</version> </dependency>
Maven POM File
<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 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <!-- ~ COORDINATES ~ --> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <artifactId>ff4j-core</artifactId> <packaging>jar</packaging> <name>ff4j-core</name> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <!-- ~ PARENT ~ --> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <parent> <groupId>org.ff4j</groupId> <artifactId>ff4j-parent</artifactId> <version>2.1</version> </parent> <properties> <license.licenseResolver>${project.baseUri}/../src/license</license.licenseResolver> </properties> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <!-- ~ DEPENDENCIES ~ --> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-dbcp2</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <scope>test</scope> </dependency> </dependencies> </project>