* 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
97 lines
2.6 KiB
XML
97 lines
2.6 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-model</artifactId>
|
|
<version>2.0.8-RELEASE</version>
|
|
<packaging>jar</packaging>
|
|
<name>litmus-model</name>
|
|
|
|
<properties>
|
|
<java.version>11</java.version>
|
|
<nexus.host>https://nexus.cmd.navi-tech.in</nexus.host>
|
|
</properties>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>nexus</id>
|
|
<name>Releases</name>
|
|
<url>${nexus.host}/repository/maven-releases/</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>nexus</id>
|
|
<name>Snapshot</name>
|
|
<url>${nexus.host}/repository/maven-snapshots</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>nexus</id>
|
|
<name>Snapshot</name>
|
|
<url>${nexus.host}/repository/maven-snapshots</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-annotations</artifactId>
|
|
<version>2.13.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.opencsv</groupId>
|
|
<artifactId>opencsv</artifactId>
|
|
<version>5.5.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
<version>2.13.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.persistence</groupId>
|
|
<artifactId>javax.persistence-api</artifactId>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>3.0.0-M2</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>11</source>
|
|
<target>11</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|