* TP-19381 | add sample size api * TP-19381 | refactor sample size api and fixed bug for all filter in teams * TP-19381 | add tests * Akshat | TP-23049 | Add Update Apis for Experiment Flow (#48) * TP-23049 | add metric and segment dropdown * TP-23049 | change ExperimentResponse to DashboardExperimentResponse * TP-23049 | add fetch experiment by name on portal in edit flow * TP-23049 | attach metric to an experiment * TP-23049 | add release, pause and rollback api for experiment * TP-23049 | add required email in release, pause and rollback apiss * TP-23049 | add createdAt, updatedAt and createdBy in experiment response * TP-23049 | add experiment audit trails * TP-23049 | change experimentInfoEntity * TP-23049 | add controller tests * TP-23049 | add variant sum validations * TP-23049 | add mapper test * TP-19381 | change sample size api from POST to GET * TP-19381 | set updated by * TP-19381 | resolve https://github.cmd.navi-tech.in/medici/litmus/pull/38#discussion_r105137 * TP-19381 | resolve https://github.cmd.navi-tech.in/medici/litmus/pull/38#discussion_r105138 * TP-19381 | resolve https://github.cmd.navi-tech.in/medici/litmus/pull/38#discussion_r105139 * TP-19381 | resolve https://github.cmd.navi-tech.in/medici/litmus/pull/38#discussion_r105140 * TP-19381 | resolve https://github.cmd.navi-tech.in/medici/litmus/pull/38#discussion_r105143 * TP-19381 | resolve https://github.cmd.navi-tech.in/medici/litmus/pull/38#discussion_r105146 * TP-19381 | resolve https://github.cmd.navi-tech.in/medici/litmus/pull/38#discussion_r105147 * TP-19381 | resolve https://github.cmd.navi-tech.in/medici/litmus/pull/38#discussion_r105153 * TP-19381 | resolve https://github.cmd.navi-tech.in/medici/litmus/pull/38#discussion_r105153 * TP-19381 | resolve https://github.cmd.navi-tech.in/medici/litmus/pull/38#discussion_r105159 * TP-19381 | convert Dto to DTO * TP-19381 | Handle null pointer for old experiments * TP-19860 | resolve https://github.cmd.navi-tech.in/medici/litmus/pull/38#discussion_r105145 * TP-19381 | add groupId while creating experiment * TP-19381 | logged old and new configurations when updating an experiment * TP-19381 | resolve https://github.cmd.navi-tech.in/medici/litmus/pull/38#discussion_r106617 * TP-19381 | add lazy loading for experiment entity for less memory usage on client side * TP-19381 | add tests
41 lines
1.2 KiB
XML
41 lines
1.2 KiB
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>2.0.8-RELEASE</version>
|
|
</parent>
|
|
|
|
<artifactId>litmus-util</artifactId>
|
|
<version>2.0.8-RELEASE</version>
|
|
|
|
<name>litmus-util</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.micrometer</groupId>
|
|
<artifactId>micrometer-registry-prometheus</artifactId>
|
|
<version>1.9.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-math3</artifactId>
|
|
<version>3.6.1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|