base.tests-1.1.5.pom
Prototype for projects with junit testing
Checksums
| MD5 | f596fcaf267b7dade833fa1d7832f16b |
| SHA1 | 343cabd819e87e97cf5795e747eea972377d9965 |
| SHA256 | 2ab0739f2d16a6f5ad90f5ef69533c963747a19f8c4dfd7777fe897dadad5687 |
| SHA512 | f0889849c122782bb0be496f9e1dbcf3b8d298ce1cae5bb21ddc51558fd2c69031d801bfaa0a4d65a9a399260b3da9b3bb5f533202f0c17b997d3cae9d7ffd6a |
POM
<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>ru.anr</groupId>
<artifactId>base.platform.parent</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>base.tests</artifactId>
<version>1.1.5</version>
<name>Base Tests</name>
<description>Prototype for projects with junit testing</description>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:git:ssh://@github.com/anr-ru/base.tests.git</connection>
<url>https://github.com/anr-ru/base.tests/</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>alex</id>
<name>Alexey Romanchuk</name>
<email>alexey.p.romanchuk@gmail.com</email>
<timezone>5</timezone>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>ru.anr</groupId>
<artifactId>base.utils</artifactId>
<version>1.0.0</version>
</dependency>
<!-- Yes, these all are compile dependencies in this project-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</dependency>
</dependencies>
</project>