* 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
135 lines
4.0 KiB
XML
135 lines
4.0 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-core</artifactId>
|
|
<version>2.0.8-RELEASE</version>
|
|
<packaging>jar</packaging>
|
|
<name>litmus-core</name>
|
|
|
|
<properties>
|
|
<java.version>17</java.version>
|
|
<nexus.host>https://nexus.cmd.navi-tech.in</nexus.host>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>nexus</id>
|
|
<name>Snapshot</name>
|
|
<url>${nexus.host}/repository/maven-snapshots</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.navi.medici</groupId>
|
|
<artifactId>litmus-model</artifactId>
|
|
<version>2.0.8-RELEASE</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.navi.medici</groupId>
|
|
<artifactId>litmus-db</artifactId>
|
|
<version>2.0.8-RELEASE</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.navi.medici</groupId>
|
|
<artifactId>litmus-cache</artifactId>
|
|
<version>2.0.8-RELEASE</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.navi.medici</groupId>
|
|
<artifactId>litmus-util</artifactId>
|
|
<version>2.0.8-RELEASE</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
<version>4.0.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>software.amazon.awssdk</groupId>
|
|
<artifactId>s3</artifactId>
|
|
<version>2.17.256</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.opencsv</groupId>
|
|
<artifactId>opencsv</artifactId>
|
|
<version>5.5.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springdoc</groupId>
|
|
<artifactId>springdoc-openapi-ui</artifactId>
|
|
<version>1.6.8</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-junit-jupiter</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.persistence</groupId>
|
|
<artifactId>javax.persistence-api</artifactId>
|
|
<version>2.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-validator</artifactId>
|
|
<version>7.0.4.Final</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-inline</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|