|
20 | 20 | <parent> |
21 | 21 | <groupId>org.mybatis</groupId> |
22 | 22 | <artifactId>mybatis-parent</artifactId> |
23 | | - <version>30</version> |
| 23 | + <version>31-SNAPSHOT</version> |
24 | 24 | </parent> |
25 | 25 | <groupId>org.mybatis.dynamic-sql</groupId> |
26 | 26 | <artifactId>mybatis-dynamic-sql</artifactId> |
|
33 | 33 | <java.version>1.8</java.version> |
34 | 34 | <maven.compiler.source>${java.version}</maven.compiler.source> |
35 | 35 | <maven.compiler.target>${java.version}</maven.compiler.target> |
36 | | - <maven.compiler.testTarget>${java.version}</maven.compiler.testTarget> |
37 | | - <maven.compiler.testSource>${java.version}</maven.compiler.testSource> |
38 | | - <junit.jupiter.version>5.2.0</junit.jupiter.version> |
39 | | - <junit.platform.version>1.2.0</junit.platform.version> |
| 36 | + <junit.jupiter.version>5.3.0</junit.jupiter.version> |
| 37 | + <junit.platform.version>1.3.0</junit.platform.version> |
40 | 38 | <clirr.comparisonVersion>1.1.0</clirr.comparisonVersion> |
41 | 39 | </properties> |
42 | 40 |
|
43 | 41 | <reporting> |
44 | 42 | <plugins> |
45 | | - <plugin> |
46 | | - <groupId>org.jacoco</groupId> |
47 | | - <artifactId>jacoco-maven-plugin</artifactId> |
48 | | - <version>0.8.1</version> |
49 | | - <reportSets> |
50 | | - <reportSet> |
51 | | - <reports> |
52 | | - <report>report</report> |
53 | | - </reports> |
54 | | - <configuration> |
55 | | - <title>${project.name} - Unit Test Report</title> |
56 | | - </configuration> |
57 | | - </reportSet> |
58 | | - </reportSets> |
59 | | - </plugin> |
60 | | - <plugin> <!-- JDK 10 --> |
61 | | - <groupId>org.apache.maven.plugins</groupId> |
62 | | - <artifactId>maven-javadoc-plugin</artifactId> |
63 | | - <version>3.0.1</version> |
64 | | - </plugin> |
65 | 43 | <plugin> |
66 | 44 | <groupId>org.apache.maven.plugins</groupId> |
67 | 45 | <artifactId>maven-checkstyle-plugin</artifactId> |
68 | 46 | <configuration> |
69 | 47 | <configLocation>checkstyle-override.xml</configLocation> |
70 | 48 | </configuration> |
71 | 49 | </plugin> |
72 | | - <!-- Added for JDK 10 --> |
73 | | - <plugin> |
74 | | - <groupId>com.github.spotbugs</groupId> |
75 | | - <artifactId>spotbugs-maven-plugin</artifactId> |
76 | | - <version>3.1.5</version> |
77 | | - </plugin> |
78 | 50 | </plugins> |
79 | 51 | </reporting> |
80 | 52 |
|
81 | | - <build> |
82 | | - <pluginManagement> |
83 | | - <!-- Added for JDK 10 --> |
84 | | - <plugins> |
85 | | - <plugin> |
86 | | - <groupId>org.apache.maven.plugins</groupId> |
87 | | - <artifactId>maven-javadoc-plugin</artifactId> |
88 | | - <version>3.0.1</version> |
89 | | - </plugin> |
90 | | - <plugin> |
91 | | - <groupId>org.apache.maven.plugins</groupId> |
92 | | - <artifactId>maven-surefire-plugin</artifactId> |
93 | | - <version>2.22.0</version> |
94 | | - </plugin> |
95 | | - <plugin> |
96 | | - <groupId>org.apache.maven.plugins</groupId> |
97 | | - <artifactId>maven-site-plugin</artifactId> |
98 | | - <version>3.7.1</version> |
99 | | - </plugin> |
100 | | - <plugin> |
101 | | - <groupId>org.jacoco</groupId> |
102 | | - <artifactId>jacoco-maven-plugin</artifactId> |
103 | | - <version>0.8.1</version> |
104 | | - </plugin> |
105 | | - </plugins> |
106 | | - </pluginManagement> |
107 | | - |
108 | | - <plugins> |
109 | | - <plugin> |
110 | | - <groupId>org.codehaus.mojo</groupId> |
111 | | - <artifactId>animal-sniffer-maven-plugin</artifactId> |
112 | | - <configuration> |
113 | | - <signature> |
114 | | - <groupId>org.codehaus.mojo.signature</groupId> |
115 | | - <artifactId>java18</artifactId> |
116 | | - <version>1.0</version> |
117 | | - </signature> |
118 | | - </configuration> |
119 | | - <executions> |
120 | | - <execution> |
121 | | - <id>check-java-1.8-compat</id> |
122 | | - <phase>process-classes</phase> |
123 | | - <goals> |
124 | | - <goal>check</goal> |
125 | | - </goals> |
126 | | - </execution> |
127 | | - </executions> |
128 | | - </plugin> |
129 | | - </plugins> |
130 | | - </build> |
131 | | - |
132 | 53 | <dependencies> |
133 | 54 | <dependency> |
134 | 55 | <groupId>org.junit.jupiter</groupId> |
|
152 | 73 | <dependency> |
153 | 74 | <groupId>org.assertj</groupId> |
154 | 75 | <artifactId>assertj-core</artifactId> |
155 | | - <version>3.10.0</version> |
| 76 | + <version>3.11.1</version> |
156 | 77 | <scope>test</scope> |
157 | 78 | </dependency> |
158 | 79 | <dependency> |
|
170 | 91 | <dependency> |
171 | 92 | <groupId>org.springframework</groupId> |
172 | 93 | <artifactId>spring-jdbc</artifactId> |
173 | | - <version>5.0.7.RELEASE</version> |
| 94 | + <version>5.0.8.RELEASE</version> |
174 | 95 | <scope>test</scope> |
175 | 96 | </dependency> |
176 | 97 | <dependency> |
|
0 commit comments