update props to latest version
[maven-build-process.git] / maven-boms / maven-boms-testing / pom.xml
blobe8550368fb590a257799a382c23fb8d75bb0099c
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
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
7     in the LICENSE file.
9 -->
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   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
16   <!--                                 PARENT                                  -->
17   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
18   <!-- https://maven.apache.org/pom.html#Inheritance -->
19   <parent>
20     <groupId>de.xn--ho-hia.maven.boms</groupId>
21     <artifactId>maven-boms</artifactId>
22     <version>9999.99.99-SNAPSHOT</version>
23   </parent>
25   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
26   <!--                               COORDINATES                               -->
27   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
28   <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
29   <artifactId>maven-boms-testing</artifactId>
30   <packaging>pom</packaging>
32   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
33   <!--                               INFORMATIONS                              -->
34   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
35   <!-- https://maven.apache.org/pom.html#More_Project_Information -->
36   <name>Maven BOMs :: Testing</name>
37   <description>Testing related dependencies</description>
39   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
40   <!--                                PROPERTIES                               -->
41   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
42   <!-- https://maven.apache.org/pom.html#Properties -->
43   <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>
56   </properties>
58   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
59   <!--                            DEPENDENCY MANAGEMENT                        -->
60   <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
61   <!-- https://maven.apache.org/pom.html#Dependency_Management -->
62   <dependencyManagement>
63     <dependencies>
64       <!-- JUnit -->
65       <!-- http://junit.org/ -->
66       <dependency>
67         <groupId>junit</groupId>
68         <artifactId>junit</artifactId>
69         <version>${version.junit}</version>
70       </dependency>
72       <!-- JUnit5 -->
73       <!-- http://junit.org/junit5 -->
74       <dependency>
75         <groupId>org.junit.platform</groupId>
76         <artifactId>junit-platform-commons</artifactId>
77         <version>${version.junit5.platform}</version>
78       </dependency>
79       <dependency>
80         <groupId>org.junit.platform</groupId>
81         <artifactId>junit-platform-console</artifactId>
82         <version>${version.junit5.platform}</version>
83       </dependency>
84       <dependency>
85         <groupId>org.junit.platform</groupId>
86         <artifactId>junit-platform-engine</artifactId>
87         <version>${version.junit5.platform}</version>
88       </dependency>
89       <dependency>
90         <groupId>org.junit.platform</groupId>
91         <artifactId>junit-platform-launcher</artifactId>
92         <version>${version.junit5.platform}</version>
93       </dependency>
94       <dependency>
95         <groupId>org.junit.platform</groupId>
96         <artifactId>junit-platform-runner</artifactId>
97         <version>${version.junit5.platform}</version>
98       </dependency>
99       <dependency>
100         <groupId>org.junit.platform</groupId>
101         <artifactId>junit-platform-surefire-provider</artifactId>
102         <version>${version.junit5.platform}</version>
103       </dependency>
104       <dependency>
105         <groupId>org.junit.jupiter</groupId>
106         <artifactId>junit-jupiter-api</artifactId>
107         <version>${version.junit5.jupiter}</version>
108       </dependency>
109       <dependency>
110         <groupId>org.junit.jupiter</groupId>
111         <artifactId>junit-jupiter-engine</artifactId>
112         <version>${version.junit5.jupiter}</version>
113       </dependency>
114       <dependency>
115         <groupId>org.junit.vintage</groupId>
116         <artifactId>junit-vintage-engine</artifactId>
117         <version>${version.junit5.vintage}</version>
118       </dependency>
120       <!-- Hamcrest -->
121       <!-- http://hamcrest.org/JavaHamcrest/ -->
122       <dependency>
123         <groupId>org.hamcrest</groupId>
124         <artifactId>hamcrest-all</artifactId>
125         <version>${version.hamcrest-all}</version>
126       </dependency>
127       <dependency>
128         <groupId>org.hamcrest</groupId>
129         <artifactId>hamcrest-core</artifactId>
130         <version>${version.hamcrest-core}</version>
131       </dependency>
133       <!-- Mockito -->
134       <!-- http://mockito.org/ -->
135       <dependency>
136         <groupId>org.mockito</groupId>
137         <artifactId>mockito-core</artifactId>
138         <version>${version.mockito-core}</version>
139       </dependency>
141       <!-- DbUnit -->
142       <!-- http://dbunit.sourceforge.net/ -->
143       <dependency>
144         <groupId>org.dbunit</groupId>
145         <artifactId>dbunit</artifactId>
146         <version>${version.dbunit}</version>
147       </dependency>
149       <!-- AssertJ -->
150       <!-- http://joel-costigliola.github.io/assertj/ -->
151       <dependency>
152         <groupId>org.assertj</groupId>
153         <artifactId>assertj-core</artifactId>
154         <version>${version.assertj-core}</version>
155       </dependency>
157       <!-- EqualsVerifier -->
158       <!-- http://www.jqno.nl/equalsverifier/ -->
159       <dependency>
160         <groupId>nl.jqno.equalsverifier</groupId>
161         <artifactId>equalsverifier</artifactId>
162         <version>${version.equalsverifier}</version>
163       </dependency>
165       <!-- MockServer -->
166       <!-- http://www.mock-server.com/ -->
167       <dependency>
168         <groupId>org.mock-server</groupId>
169         <artifactId>mockserver-netty</artifactId>
170         <version>${version.mockserver}</version>
171       </dependency>
172     </dependencies>
173   </dependencyManagement>
175 </project>