Files
litmus-be/litmus-cache/pom.xml
Jaivardhan Singh 2c090acfe6 TP-62059 || Use Redis to store enabled Experiments. (#99)
* TP-62059 || Add caching to update enabled experiments.

* TP-62059 || Make all the fields serializable to be dumped to Redis
2024-04-04 20:43:33 +05:30

29 lines
901 B
XML

<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>litmus</artifactId>
<groupId>com.navi.medici</groupId>
<version>3.0.2-RELEASE</version>
</parent>
<artifactId>litmus-cache</artifactId>
<version>3.0.2-RELEASE</version>
<packaging>jar</packaging>
<name>litmus-cache</name>
<dependencies>
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson</artifactId>
<version>3.16.3</version>
</dependency>
<dependency>
<groupId>com.navi.medici</groupId>
<artifactId>litmus-model</artifactId>
<version>3.0.2-RELEASE</version>
</dependency>
</dependencies>
</project>