ff4j-store-ehcache
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ff4j</groupId> <artifactId>ff4j-store-ehcache</artifactId> <version>2.1</version> </dependency>
<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-store-ehcache</artifactId> <packaging>jar</packaging> <name>ff4j-store-ehcache</name> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <!-- ~ PARENT ~ --> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <parent> <groupId>org.ff4j</groupId> <artifactId>ff4j-parent</artifactId> <version>2.1</version> </parent> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <!-- ~ PROPERTIES ~ --> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <properties> <license.licenseResolver>${project.baseUri}/../src/license</license.licenseResolver> <version.ehcache>2.11.0.11.8</version.ehcache> <version.terracotta-toolkit-runtime>4.4.0.11.8</version.terracotta-toolkit-runtime> <version.terracotta-toolkit-api>2.10</version.terracotta-toolkit-api> <version.terracotta-toolkit-api-internal>2.2.0</version.terracotta-toolkit-api-internal> </properties> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <!-- ~ DEPENDENCIES ~ --> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <dependencies> <!-- ff4j --> <dependency> <groupId>org.ff4j</groupId> <artifactId>ff4j-core</artifactId> <version>${project.version}</version> </dependency> <!-- json --> <dependency> <artifactId>ff4j-utils-json</artifactId> <groupId>org.ff4j</groupId> <version>${project.version}</version> </dependency> <!-- Cache provider --> <dependency> <groupId>net.sf.ehcache</groupId> <artifactId>ehcache</artifactId> <version>${version.ehcache}</version> </dependency> <!-- Terracotta --> <dependency> <groupId>org.terracotta</groupId> <artifactId>terracotta-toolkit-runtime</artifactId> <version>${version.terracotta-toolkit-runtime}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.terracotta.toolkit</groupId> <artifactId>terracotta-toolkit-api</artifactId> <version>${version.terracotta-toolkit-api}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.terracotta.toolkit</groupId> <artifactId>terracotta-toolkit-api-internal</artifactId> <version>${version.terracotta-toolkit-api-internal}</version> <scope>test</scope> </dependency> <!-- Tests --> <dependency> <artifactId>ff4j-test</artifactId> <groupId>org.ff4j</groupId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> </dependencies> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <!-- ~ BUILD ~ --> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> <version>1.0.0</version> <executions> <execution> <id>Define conf for TerraCotta</id> <phase>pre-integration-test</phase> <goals> <goal>set-system-properties</goal> </goals> <configuration> <properties> <property> <name>tc.config</name> <value>${basedir}/src/test/resources/tc-config.xml</value> </property> </properties> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>${version.maven.plugin.failsafe}</version> <dependencies> <dependency> <groupId>org.apache.maven.surefire</groupId> <artifactId>surefire-junit47</artifactId> <version>${version.maven.plugin.failsafe}</version> </dependency> </dependencies> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <!-- ~ REPOSITORIES ~ --> <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ --> <repositories> <repository> <id>terracotta-snapshots</id> <url>https://www.terracotta.org/download/reflector/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> <repository> <id>terracotta-releases</id> <url>https://www.terracotta.org/download/reflector/releases</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>terracotta-snapshots</id> <url>https://www.terracotta.org/download/reflector/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> <pluginRepository> <id>terracotta-releases</id> <url>https://www.terracotta.org/download/reflector/releases</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> </pluginRepositories> </project>