1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <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>
- <groupId>com.scytl.products.ov.channel.cc</groupId>
- <artifactId>control-components</artifactId>
- <version>2.1.7</version>
- </parent>
- <artifactId>control-components-test</artifactId>
- <name>Control Components Tests</name>
- <description>Integration tests of the Control Components</description>
- <dependencies>
- <dependency>
- <groupId>com.scytl.products.ov.channel.cc</groupId>
- <artifactId>choice-codes-generation-service</artifactId>
- <version>${project.version}</version>
- <classifier>original</classifier>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.scytl.products.ov.channel.cc</groupId>
- <artifactId>choice-codes-verification-service</artifactId>
- <version>${project.version}</version>
- <classifier>original</classifier>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-core</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-test</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk15on</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.h2database</groupId>
- <artifactId>h2</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|