Skip to content

Commit 8203a69

Browse files
author
ccleve
committed
more version, plugin updates
1 parent 1e74cb9 commit 8203a69

File tree

1 file changed

+28
-10
lines changed

1 file changed

+28
-10
lines changed

pom.xml

Lines changed: 28 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
53
<modelVersion>4.0.0</modelVersion>
64

75
<groupId>com.dieselpoint</groupId>
@@ -58,17 +56,37 @@
5856

5957
<build>
6058
<plugins>
59+
<plugin>
60+
<groupId>org.apache.maven.plugins</groupId>
61+
<artifactId>maven-enforcer-plugin</artifactId>
62+
<version>3.1.0</version>
63+
<executions>
64+
<execution>
65+
<id>enforce-maven</id>
66+
<goals>
67+
<goal>enforce</goal>
68+
</goals>
69+
<configuration>
70+
<rules>
71+
<requireMavenVersion>
72+
<version>3.2.5</version>
73+
</requireMavenVersion>
74+
</rules>
75+
</configuration>
76+
</execution>
77+
</executions>
78+
</plugin>
6179
<plugin>
6280
<artifactId>maven-compiler-plugin</artifactId>
63-
<version>3.8.0</version>
81+
<version>3.10.1</version>
6482
<configuration>
6583
<release>11</release>
6684
</configuration>
6785
</plugin>
6886
<plugin>
6987
<groupId>org.apache.maven.plugins</groupId>
7088
<artifactId>maven-source-plugin</artifactId>
71-
<version>3.1.0</version>
89+
<version>3.2.1</version>
7290
<executions>
7391
<execution>
7492
<id>attach-sources</id>
@@ -82,7 +100,7 @@
82100
<plugin>
83101
<groupId>org.apache.maven.plugins</groupId>
84102
<artifactId>maven-javadoc-plugin</artifactId>
85-
<version>3.1.0</version>
103+
<version>3.4.1</version>
86104
<configuration>
87105
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
88106
<additionalparam>-Xdoclint:none</additionalparam>
@@ -100,7 +118,7 @@
100118
<plugin>
101119
<groupId>org.apache.maven.plugins</groupId>
102120
<artifactId>maven-gpg-plugin</artifactId>
103-
<version>1.6</version>
121+
<version>3.0.1</version>
104122
<executions>
105123
<execution>
106124
<id>sign-artifacts</id>
@@ -115,7 +133,7 @@
115133
<plugin>
116134
<groupId>org.sonatype.plugins</groupId>
117135
<artifactId>nexus-staging-maven-plugin</artifactId>
118-
<version>1.6.8</version>
136+
<version>1.6.13</version>
119137
<extensions>true</extensions>
120138
<configuration>
121139
<serverId>ossrh</serverId>
@@ -151,7 +169,7 @@
151169
<dependency>
152170
<groupId>org.postgresql</groupId>
153171
<artifactId>postgresql</artifactId>
154-
<version>42.4.1</version>
172+
<version>42.5.0</version>
155173
<scope>test</scope>
156174
</dependency>
157175

@@ -165,7 +183,7 @@
165183
<dependency>
166184
<groupId>org.xerial</groupId>
167185
<artifactId>sqlite-jdbc</artifactId>
168-
<version>3.36.0.3</version>
186+
<version>3.39.2.1</version>
169187
<scope>test</scope>
170188
</dependency>
171189

0 commit comments

Comments
 (0)