Skip to content

Commit 4b063da

Browse files
committed
[pom] Wire in bom-usage to test
1 parent 9c1e5d0 commit 4b063da

File tree

1 file changed

+107
-0
lines changed

1 file changed

+107
-0
lines changed

pom.xml

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,4 +274,111 @@
274274
</dependency>
275275
</dependencies>
276276
</dependencyManagement>
277+
278+
<dependencies>
279+
<!-- Mybatis -->
280+
<dependency>
281+
<groupId>org.mybatis</groupId>
282+
<artifactId>mybatis</artifactId>
283+
</dependency>
284+
285+
<!-- Caches -->
286+
<dependency>
287+
<groupId>org.mybatis.caches</groupId>
288+
<artifactId>mybatis-caffeine</artifactId>
289+
</dependency>
290+
<dependency>
291+
<groupId>org.mybatis.caches</groupId>
292+
<artifactId>mybatis-ehcache</artifactId>
293+
</dependency>
294+
<dependency>
295+
<groupId>org.mybatis.caches</groupId>
296+
<artifactId>mybatis-hazelcast</artifactId>
297+
</dependency>
298+
<dependency>
299+
<groupId>org.mybatis.caches</groupId>
300+
<artifactId>mybatis-ignite</artifactId>
301+
</dependency>
302+
<dependency>
303+
<groupId>org.mybatis.caches</groupId>
304+
<artifactId>mybatis-memcached</artifactId>
305+
</dependency>
306+
<dependency>
307+
<groupId>org.mybatis.caches</groupId>
308+
<artifactId>mybatis-redis</artifactId>
309+
</dependency>
310+
311+
<!-- Extensions -->
312+
<dependency>
313+
<groupId>org.mybatis</groupId>
314+
<artifactId>mybatis-cdi</artifactId>
315+
</dependency>
316+
<dependency>
317+
<groupId>org.mybatis</groupId>
318+
<artifactId>mybatis-guice</artifactId>
319+
</dependency>
320+
<dependency>
321+
<groupId>org.mybatis</groupId>
322+
<artifactId>mybatis-spring</artifactId>
323+
</dependency>
324+
325+
<!-- Generators -->
326+
<dependency>
327+
<groupId>org.mybatis.generator</groupId>
328+
<artifactId>mybatis-generator-core</artifactId>
329+
</dependency>
330+
<dependency>
331+
<groupId>org.mybatis.dynamic-sql</groupId>
332+
<artifactId>mybatis-dynamic-sql</artifactId>
333+
</dependency>
334+
335+
<!-- ibatis (legacy support) -->
336+
<dependency>
337+
<groupId>org.mybatis</groupId>
338+
<artifactId>mybatis2</artifactId>
339+
</dependency>
340+
<dependency>
341+
<groupId>org.mybatis</groupId>
342+
<artifactId>mybatis-2-spring</artifactId>
343+
</dependency>
344+
345+
<!-- Migrations -->
346+
<dependency>
347+
<groupId>org.mybatis</groupId>
348+
<artifactId>mybatis-migrations</artifactId>
349+
</dependency>
350+
351+
<!-- Scala -->
352+
<dependency>
353+
<groupId>org.mybatis.scala</groupId>
354+
<artifactId>mybatis-scala-core_2.13</artifactId>
355+
</dependency>
356+
357+
<!-- Scripting -->
358+
<dependency>
359+
<groupId>org.mybatis.scripting</groupId>
360+
<artifactId>mybatis-freemarker</artifactId>
361+
</dependency>
362+
<dependency>
363+
<groupId>org.mybatis.scripting</groupId>
364+
<artifactId>mybatis-thymeleaf</artifactId>
365+
</dependency>
366+
<dependency>
367+
<groupId>org.mybatis.scripting</groupId>
368+
<artifactId>mybatis-velocity</artifactId>
369+
</dependency>
370+
371+
<!-- Spring Boot -->
372+
<dependency>
373+
<groupId>org.mybatis.spring.boot</groupId>
374+
<artifactId>mybatis-spring-boot-starter</artifactId>
375+
</dependency>
376+
377+
<!-- Addons -->
378+
<dependency>
379+
<groupId>org.mybatis</groupId>
380+
<artifactId>mybatis-typehandlers-threeten-extra</artifactId>
381+
</dependency>
382+
</dependencies>
383+
277384
</project>

0 commit comments

Comments
 (0)