|
1 | 1 | <?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"> |
5 | 3 | <modelVersion>4.0.0</modelVersion> |
6 | 4 |
|
7 | 5 | <groupId>com.dieselpoint</groupId> |
|
58 | 56 |
|
59 | 57 | <build> |
60 | 58 | <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> |
61 | 79 | <plugin> |
62 | 80 | <artifactId>maven-compiler-plugin</artifactId> |
63 | | - <version>3.8.0</version> |
| 81 | + <version>3.10.1</version> |
64 | 82 | <configuration> |
65 | 83 | <release>11</release> |
66 | 84 | </configuration> |
67 | 85 | </plugin> |
68 | 86 | <plugin> |
69 | 87 | <groupId>org.apache.maven.plugins</groupId> |
70 | 88 | <artifactId>maven-source-plugin</artifactId> |
71 | | - <version>3.1.0</version> |
| 89 | + <version>3.2.1</version> |
72 | 90 | <executions> |
73 | 91 | <execution> |
74 | 92 | <id>attach-sources</id> |
|
82 | 100 | <plugin> |
83 | 101 | <groupId>org.apache.maven.plugins</groupId> |
84 | 102 | <artifactId>maven-javadoc-plugin</artifactId> |
85 | | - <version>3.1.0</version> |
| 103 | + <version>3.4.1</version> |
86 | 104 | <configuration> |
87 | 105 | <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> |
88 | 106 | <additionalparam>-Xdoclint:none</additionalparam> |
|
100 | 118 | <plugin> |
101 | 119 | <groupId>org.apache.maven.plugins</groupId> |
102 | 120 | <artifactId>maven-gpg-plugin</artifactId> |
103 | | - <version>1.6</version> |
| 121 | + <version>3.0.1</version> |
104 | 122 | <executions> |
105 | 123 | <execution> |
106 | 124 | <id>sign-artifacts</id> |
|
115 | 133 | <plugin> |
116 | 134 | <groupId>org.sonatype.plugins</groupId> |
117 | 135 | <artifactId>nexus-staging-maven-plugin</artifactId> |
118 | | - <version>1.6.8</version> |
| 136 | + <version>1.6.13</version> |
119 | 137 | <extensions>true</extensions> |
120 | 138 | <configuration> |
121 | 139 | <serverId>ossrh</serverId> |
|
151 | 169 | <dependency> |
152 | 170 | <groupId>org.postgresql</groupId> |
153 | 171 | <artifactId>postgresql</artifactId> |
154 | | - <version>42.4.1</version> |
| 172 | + <version>42.5.0</version> |
155 | 173 | <scope>test</scope> |
156 | 174 | </dependency> |
157 | 175 |
|
|
165 | 183 | <dependency> |
166 | 184 | <groupId>org.xerial</groupId> |
167 | 185 | <artifactId>sqlite-jdbc</artifactId> |
168 | | - <version>3.36.0.3</version> |
| 186 | + <version>3.39.2.1</version> |
169 | 187 | <scope>test</scope> |
170 | 188 | </dependency> |
171 | 189 |
|
|
0 commit comments