Skip to content

Commit ca60107

Browse files
authored
Merge pull request #56 from jeffgbutler/master
Update parent and dependencies, simplify POM
2 parents ec602fe + 9118a18 commit ca60107

File tree

1 file changed

+5
-84
lines changed

1 file changed

+5
-84
lines changed

pom.xml

Lines changed: 5 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>org.mybatis</groupId>
2222
<artifactId>mybatis-parent</artifactId>
23-
<version>30</version>
23+
<version>31-SNAPSHOT</version>
2424
</parent>
2525
<groupId>org.mybatis.dynamic-sql</groupId>
2626
<artifactId>mybatis-dynamic-sql</artifactId>
@@ -33,102 +33,23 @@
3333
<java.version>1.8</java.version>
3434
<maven.compiler.source>${java.version}</maven.compiler.source>
3535
<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>
4038
<clirr.comparisonVersion>1.1.0</clirr.comparisonVersion>
4139
</properties>
4240

4341
<reporting>
4442
<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>
6543
<plugin>
6644
<groupId>org.apache.maven.plugins</groupId>
6745
<artifactId>maven-checkstyle-plugin</artifactId>
6846
<configuration>
6947
<configLocation>checkstyle-override.xml</configLocation>
7048
</configuration>
7149
</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>
7850
</plugins>
7951
</reporting>
8052

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-
13253
<dependencies>
13354
<dependency>
13455
<groupId>org.junit.jupiter</groupId>
@@ -152,7 +73,7 @@
15273
<dependency>
15374
<groupId>org.assertj</groupId>
15475
<artifactId>assertj-core</artifactId>
155-
<version>3.10.0</version>
76+
<version>3.11.1</version>
15677
<scope>test</scope>
15778
</dependency>
15879
<dependency>
@@ -170,7 +91,7 @@
17091
<dependency>
17192
<groupId>org.springframework</groupId>
17293
<artifactId>spring-jdbc</artifactId>
173-
<version>5.0.7.RELEASE</version>
94+
<version>5.0.8.RELEASE</version>
17495
<scope>test</scope>
17596
</dependency>
17697
<dependency>

0 commit comments

Comments
 (0)