|
1 | | -<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"> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
2 | 4 | <modelVersion>4.0.0</modelVersion> |
3 | 5 |
|
4 | 6 | <parent> |
|
60 | 62 | <checkstyle.suppressions.location>checkstyle-suppressions.xml</checkstyle.suppressions.location> |
61 | 63 | </properties> |
62 | 64 |
|
63 | | - <dependencyManagement> |
64 | | - <dependencies> |
65 | | - <!-- Reactor --> |
66 | | - <dependency> |
67 | | - <groupId>io.projectreactor</groupId> |
68 | | - <artifactId>reactor-bom</artifactId> |
69 | | - <version>${reactor.version}</version> |
70 | | - <type>pom</type> |
71 | | - <scope>import</scope> |
72 | | - </dependency> |
73 | | - <!-- JUnit --> |
74 | | - <dependency> |
75 | | - <groupId>org.junit</groupId> |
76 | | - <artifactId>junit-bom</artifactId> |
77 | | - <version>${junit.version}</version> |
78 | | - <type>pom</type> |
79 | | - <scope>import</scope> |
80 | | - </dependency> |
81 | | - <!-- Mockito --> |
82 | | - <dependency> |
83 | | - <groupId>org.mockito</groupId> |
84 | | - <artifactId>mockito-bom</artifactId> |
85 | | - <version>${mockito.version}</version> |
86 | | - <type>pom</type> |
87 | | - <scope>import</scope> |
88 | | - </dependency> |
89 | | - <dependency> |
90 | | - <groupId>org.mockito</groupId> |
91 | | - <artifactId>mockito-inline</artifactId> |
92 | | - <version>${mockito-inline.version}</version> |
93 | | - </dependency> |
94 | | - <!-- Hamcrest --> |
95 | | - <dependency> |
96 | | - <groupId>org.hamcrest</groupId> |
97 | | - <artifactId>hamcrest-all</artifactId> |
98 | | - <version>${hamcrest.version}</version> |
99 | | - </dependency> |
100 | | - <!-- AssertJ --> |
101 | | - <dependency> |
102 | | - <groupId>org.assertj</groupId> |
103 | | - <artifactId>assertj-bom</artifactId> |
104 | | - <version>${assertj.version}</version> |
105 | | - <type>pom</type> |
106 | | - <scope>import</scope> |
107 | | - </dependency> |
108 | | - <!-- Logging --> |
109 | | - <dependency> |
110 | | - <groupId>org.slf4j</groupId> |
111 | | - <artifactId>slf4j-api</artifactId> |
112 | | - <version>${slf4j.version}</version> |
113 | | - </dependency> |
114 | | - <dependency> |
115 | | - <groupId>org.apache.logging.log4j</groupId> |
116 | | - <artifactId>log4j-bom</artifactId> |
117 | | - <version>${log4j.version}</version> |
118 | | - <type>pom</type> |
119 | | - <scope>import</scope> |
120 | | - </dependency> |
121 | | - </dependencies> |
122 | | - </dependencyManagement> |
123 | | - |
124 | 65 | <dependencies> |
125 | 66 | <!-- Tests --> |
126 | 67 | <dependency> |
|
0 commit comments