1 <?xml version="1.0" encoding="UTF-8"?>
4 This file is part of maven-build-process. It is subject to the license terms in the LICENSE file found in the top-level
5 directory of this distribution and at http://creativecommons.org/publicdomain/zero/1.0/. No part of maven-build-process,
6 including this file, may be copied, modified, propagated, or distributed except according to the terms contained
10 <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">
11 <modelVersion>4.0.0</modelVersion>
13 <!-- ordering follows https://maven.apache.org/developers/conventions/code.html#POM_Code_Convention -->
15 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
17 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
18 <!-- https://maven.apache.org/pom.html#Inheritance -->
20 <groupId>de.xn--ho-hia.maven.boms</groupId>
21 <artifactId>maven-boms</artifactId>
22 <version>9999.99.99-SNAPSHOT</version>
25 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
27 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
28 <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
29 <artifactId>maven-boms-testing</artifactId>
30 <packaging>pom</packaging>
32 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
34 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
35 <!-- https://maven.apache.org/pom.html#More_Project_Information -->
36 <name>Maven BOMs :: Testing</name>
37 <description>Testing related dependencies</description>
39 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
41 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
42 <!-- https://maven.apache.org/pom.html#Properties -->
44 <version.junit>4.12</version.junit>
45 <version.junit5.platform>1.1.0-M1</version.junit5.platform>
46 <version.junit5.jupiter>5.1.0-M1</version.junit5.jupiter>
47 <version.junit5.vintage>5.1.0-M1</version.junit5.vintage>
48 <version.hamcrest-all>1.3</version.hamcrest-all>
49 <version.hamcrest-core>1.3</version.hamcrest-core>
50 <version.mockito-core>2.12.0</version.mockito-core>
51 <version.dbunit>2.5.4</version.dbunit>
52 <version.fest-assert-core>2.0M10</version.fest-assert-core>
53 <version.assertj-core>3.8.0</version.assertj-core>
54 <version.equalsverifier>2.4</version.equalsverifier>
55 <version.mockserver>4.1.0</version.mockserver>
58 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
59 <!-- DEPENDENCY MANAGEMENT -->
60 <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
61 <!-- https://maven.apache.org/pom.html#Dependency_Management -->
62 <dependencyManagement>
65 <!-- http://junit.org/ -->
67 <groupId>junit</groupId>
68 <artifactId>junit</artifactId>
69 <version>${version.junit}</version>
73 <!-- http://junit.org/junit5 -->
75 <groupId>org.junit.platform</groupId>
76 <artifactId>junit-platform-commons</artifactId>
77 <version>${version.junit5.platform}</version>
80 <groupId>org.junit.platform</groupId>
81 <artifactId>junit-platform-console</artifactId>
82 <version>${version.junit5.platform}</version>
85 <groupId>org.junit.platform</groupId>
86 <artifactId>junit-platform-engine</artifactId>
87 <version>${version.junit5.platform}</version>
90 <groupId>org.junit.platform</groupId>
91 <artifactId>junit-platform-launcher</artifactId>
92 <version>${version.junit5.platform}</version>
95 <groupId>org.junit.platform</groupId>
96 <artifactId>junit-platform-runner</artifactId>
97 <version>${version.junit5.platform}</version>
100 <groupId>org.junit.platform</groupId>
101 <artifactId>junit-platform-surefire-provider</artifactId>
102 <version>${version.junit5.platform}</version>
105 <groupId>org.junit.jupiter</groupId>
106 <artifactId>junit-jupiter-api</artifactId>
107 <version>${version.junit5.jupiter}</version>
110 <groupId>org.junit.jupiter</groupId>
111 <artifactId>junit-jupiter-engine</artifactId>
112 <version>${version.junit5.jupiter}</version>
115 <groupId>org.junit.vintage</groupId>
116 <artifactId>junit-vintage-engine</artifactId>
117 <version>${version.junit5.vintage}</version>
121 <!-- http://hamcrest.org/JavaHamcrest/ -->
123 <groupId>org.hamcrest</groupId>
124 <artifactId>hamcrest-all</artifactId>
125 <version>${version.hamcrest-all}</version>
128 <groupId>org.hamcrest</groupId>
129 <artifactId>hamcrest-core</artifactId>
130 <version>${version.hamcrest-core}</version>
134 <!-- http://mockito.org/ -->
136 <groupId>org.mockito</groupId>
137 <artifactId>mockito-core</artifactId>
138 <version>${version.mockito-core}</version>
142 <!-- http://dbunit.sourceforge.net/ -->
144 <groupId>org.dbunit</groupId>
145 <artifactId>dbunit</artifactId>
146 <version>${version.dbunit}</version>
150 <!-- http://joel-costigliola.github.io/assertj/ -->
152 <groupId>org.assertj</groupId>
153 <artifactId>assertj-core</artifactId>
154 <version>${version.assertj-core}</version>
157 <!-- EqualsVerifier -->
158 <!-- http://www.jqno.nl/equalsverifier/ -->
160 <groupId>nl.jqno.equalsverifier</groupId>
161 <artifactId>equalsverifier</artifactId>
162 <version>${version.equalsverifier}</version>
166 <!-- http://www.mock-server.com/ -->
168 <groupId>org.mock-server</groupId>
169 <artifactId>mockserver-netty</artifactId>
170 <version>${version.mockserver}</version>
173 </dependencyManagement>