|
54 | 54 | <dependencyManagement> |
55 | 55 | <dependencies> |
56 | 56 | <dependency> |
57 | | - <groupId>org.testcontainers</groupId> |
58 | | - <artifactId>testcontainers-bom</artifactId> |
59 | | - <version>1.15.3</version> |
60 | | - <type>pom</type> |
61 | | - <scope>import</scope> |
| 57 | + <groupId>com.alipay.sofa.common</groupId> |
| 58 | + <artifactId>sofa-common-tools</artifactId> |
| 59 | + <version>1.3.12</version> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>org.slf4j</groupId> |
| 63 | + <artifactId>slf4j-api</artifactId> |
| 64 | + <version>1.7.36</version> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>com.google.guava</groupId> |
| 68 | + <artifactId>guava</artifactId> |
| 69 | + <version>31.1-jre</version> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>junit</groupId> |
| 73 | + <artifactId>junit</artifactId> |
| 74 | + <version>4.13.2</version> |
62 | 75 | </dependency> |
63 | 76 | </dependencies> |
64 | 77 | </dependencyManagement> |
|
67 | 80 | <dependency> |
68 | 81 | <groupId>com.alipay.sofa.common</groupId> |
69 | 82 | <artifactId>sofa-common-tools</artifactId> |
70 | | - <version>1.3.12</version> |
71 | 83 | </dependency> |
72 | 84 |
|
73 | 85 | <dependency> |
|
91 | 103 | <dependency> |
92 | 104 | <groupId>com.google.guava</groupId> |
93 | 105 | <artifactId>guava</artifactId> |
94 | | - <version>31.1-jre</version> |
95 | | - </dependency> |
96 | | - |
97 | | - <dependency> |
98 | | - <groupId>org.springframework</groupId> |
99 | | - <artifactId>spring-core</artifactId> |
100 | | - <version>5.2.25.RELEASE</version> |
101 | | - <scope>test</scope> |
102 | | - </dependency> |
103 | | - |
104 | | - <dependency> |
105 | | - <groupId>org.springframework</groupId> |
106 | | - <artifactId>spring-beans</artifactId> |
107 | | - <version>5.2.25.RELEASE</version> |
108 | | - <scope>test</scope> |
109 | 106 | </dependency> |
110 | 107 |
|
111 | 108 | <dependency> |
|
129 | 126 | <dependency> |
130 | 127 | <groupId>org.slf4j</groupId> |
131 | 128 | <artifactId>slf4j-api</artifactId> |
132 | | - <version>1.7.36</version> |
133 | 129 | </dependency> |
134 | 130 |
|
135 | 131 | <dependency> |
136 | 132 | <groupId>junit</groupId> |
137 | 133 | <artifactId>junit</artifactId> |
138 | | - <version>4.13.2</version> |
139 | 134 | <scope>test</scope> |
140 | 135 | </dependency> |
141 | 136 |
|
|
144 | 139 | <artifactId>powermock-api-mockito2</artifactId> |
145 | 140 | <version>2.0.9</version> |
146 | 141 | <scope>test</scope> |
| 142 | + <exclusions> |
| 143 | + <exclusion> |
| 144 | + <artifactId>objenesis</artifactId> |
| 145 | + <groupId>org.objenesis</groupId> |
| 146 | + </exclusion> |
| 147 | + </exclusions> |
147 | 148 | </dependency> |
148 | 149 |
|
149 | 150 | <dependency> |
|
153 | 154 | <scope>test</scope> |
154 | 155 | </dependency> |
155 | 156 |
|
156 | | - <dependency> |
157 | | - <groupId>ch.qos.logback</groupId> |
158 | | - <artifactId>logback-classic</artifactId> |
159 | | - <version>1.2.12</version> |
160 | | - <scope>test</scope> |
161 | | - </dependency> |
162 | | - |
163 | 157 | <dependency> |
164 | 158 | <groupId>org.testcontainers</groupId> |
165 | 159 | <artifactId>jdbc</artifactId> |
166 | 160 | <scope>test</scope> |
| 161 | + <version>1.15.3</version> |
| 162 | + <exclusions> |
| 163 | + <exclusion> |
| 164 | + <groupId>org.rnorth.visible-assertions</groupId> |
| 165 | + <artifactId>visible-assertions</artifactId> |
| 166 | + </exclusion> |
| 167 | + </exclusions> |
167 | 168 | </dependency> |
168 | 169 | </dependencies> |
169 | 170 |
|
|
361 | 362 | </execution> |
362 | 363 | </executions> |
363 | 364 | </plugin> |
| 365 | + <plugin> |
| 366 | + <groupId>org.apache.maven.plugins</groupId> |
| 367 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 368 | + <version>3.0.0-M3</version> |
| 369 | + <executions> |
| 370 | + <execution> |
| 371 | + <id>enforce-dependency-convergence</id> |
| 372 | + <goals> |
| 373 | + <goal>enforce</goal> |
| 374 | + </goals> |
| 375 | + <configuration> |
| 376 | + <rules> |
| 377 | + <DependencyConvergence/> |
| 378 | + </rules> |
| 379 | + </configuration> |
| 380 | + </execution> |
| 381 | + </executions> |
| 382 | + </plugin> |
364 | 383 | </plugins> |
365 | 384 | </build> |
366 | 385 | </profile> |
|
0 commit comments