|
1 | 1 | <!-- |
2 | 2 |
|
3 | | - Copyright 2016-2017 the original author or authors. |
| 3 | + Copyright 2016-2018 the original author or authors. |
4 | 4 |
|
5 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
6 | 6 | you may not use this file except in compliance with the License. |
|
20 | 20 | <parent> |
21 | 21 | <groupId>org.mybatis</groupId> |
22 | 22 | <artifactId>mybatis-parent</artifactId> |
23 | | - <version>29</version> |
| 23 | + <version>30</version> |
24 | 24 | </parent> |
25 | 25 | <groupId>org.mybatis.dynamic-sql</groupId> |
26 | 26 | <artifactId>mybatis-dynamic-sql</artifactId> |
|
58 | 58 | <groupId>org.apache.maven.plugins</groupId> |
59 | 59 | <artifactId>maven-checkstyle-plugin</artifactId> |
60 | 60 | <configuration> |
61 | | - <configLocation>checkstyle.xml</configLocation> |
| 61 | + <configLocation>checkstyle-dsql.xml</configLocation> |
62 | 62 | </configuration> |
63 | 63 | </plugin> |
64 | 64 | </plugins> |
|
86 | 86 | </execution> |
87 | 87 | </executions> |
88 | 88 | </plugin> |
89 | | - <plugin> |
90 | | - <groupId>org.apache.maven.plugins</groupId> |
91 | | - <artifactId>maven-surefire-plugin</artifactId> |
92 | | - <dependencies> |
93 | | - <dependency> |
94 | | - <groupId>org.junit.platform</groupId> |
95 | | - <artifactId>junit-platform-surefire-provider</artifactId> |
96 | | - <version>${junit.platform.version}</version> |
97 | | - </dependency> |
98 | | - <dependency> |
99 | | - <groupId>org.junit.jupiter</groupId> |
100 | | - <artifactId>junit-jupiter-engine</artifactId> |
101 | | - <version>${junit.jupiter.version}</version> |
102 | | - </dependency> |
103 | | - </dependencies> |
104 | | - </plugin> |
105 | 89 | </plugins> |
106 | 90 | </build> |
107 | 91 |
|
|
114 | 98 | </dependency> |
115 | 99 | <!-- added to support running JUnit5 tests with JUnit4. Remove when eclipse/infinitest catch up. --> |
116 | 100 | <dependency> |
117 | | - <groupId>junit</groupId> |
118 | | - <artifactId>junit</artifactId> |
119 | | - <version>4.12</version> |
| 101 | + <groupId>org.junit.vintage</groupId> |
| 102 | + <artifactId>junit-vintage-engine</artifactId> |
| 103 | + <version>4.12.2</version> |
120 | 104 | <scope>test</scope> |
121 | 105 | </dependency> |
122 | 106 | <dependency> |
|
135 | 119 | <dependency> |
136 | 120 | <groupId>org.assertj</groupId> |
137 | 121 | <artifactId>assertj-core</artifactId> |
138 | | - <version>3.8.0</version> |
| 122 | + <version>3.9.0</version> |
139 | 123 | <scope>test</scope> |
140 | 124 | </dependency> |
141 | 125 | <dependency> |
|
0 commit comments