|
74 | 74 | <plugin>
|
75 | 75 | <groupId>org.apache.maven.plugins</groupId>
|
76 | 76 | <artifactId>maven-compiler-plugin</artifactId>
|
77 |
| - <version>3.5.1</version> |
| 77 | + <version>3.8.1</version> |
78 | 78 | <configuration>
|
79 | 79 | <source>11</source>
|
80 | 80 | <target>11</target>
|
|
91 | 91 | <plugin>
|
92 | 92 | <groupId>org.apache.maven.plugins</groupId>
|
93 | 93 | <artifactId>maven-surefire-plugin</artifactId>
|
94 |
| - <version>2.22.0</version> |
| 94 | + <version>2.22.2</version> |
95 | 95 | <configuration>
|
96 | 96 | <argLine>
|
97 | 97 | --illegal-access=permit
|
|
125 | 125 | <dependency>
|
126 | 126 | <groupId>org.apache.maven.scm</groupId>
|
127 | 127 | <artifactId>maven-scm-provider-gitexe</artifactId>
|
128 |
| - <version>1.9.5</version> |
| 128 | + <version>1.11.2</version> |
| 129 | + </dependency> |
| 130 | + <dependency> |
| 131 | + <groupId>org.apache.maven.scm</groupId> |
| 132 | + <artifactId>maven-scm-api</artifactId> |
| 133 | + <version>1.11.2</version> |
129 | 134 | </dependency>
|
130 | 135 | </dependencies>
|
131 | 136 | </plugin>
|
132 | 137 | <plugin>
|
133 | 138 | <groupId>org.sonatype.plugins</groupId>
|
134 | 139 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
135 |
| - <version>1.6.7</version> |
| 140 | + <version>1.6.8</version> |
136 | 141 | <extensions>true</extensions>
|
137 | 142 | <configuration>
|
138 | 143 | <serverId>ossrh</serverId>
|
|
143 | 148 | <plugin>
|
144 | 149 | <groupId>org.apache.maven.plugins</groupId>
|
145 | 150 | <artifactId>maven-source-plugin</artifactId>
|
146 |
| - <version>3.0.1</version> |
| 151 | + <version>3.2.0</version> |
147 | 152 | <executions>
|
148 | 153 | <execution>
|
149 | 154 | <id>attach-sources</id>
|
|
163 | 168 | <plugin>
|
164 | 169 | <groupId>org.projectlombok</groupId>
|
165 | 170 | <artifactId>lombok-maven-plugin</artifactId>
|
166 |
| - <version>1.18.0.0</version> |
| 171 | + <version>1.18.20.0</version> |
167 | 172 | <configuration>
|
168 | 173 | <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
|
169 | 174 | <encoding>UTF-8</encoding>
|
|
186 | 191 | <sourcepath>${project.build.directory}/generated-sources/delombok</sourcepath>
|
187 | 192 | </configuration>
|
188 | 193 | </plugin>
|
| 194 | + <plugin> |
| 195 | + <groupId>org.apache.maven.plugins</groupId> |
| 196 | + <artifactId>maven-help-plugin</artifactId> |
| 197 | + <version>3.2.0</version> |
| 198 | + </plugin> |
189 | 199 | </plugins>
|
190 | 200 | </build>
|
191 | 201 |
|
|
222 | 232 | <plugin>
|
223 | 233 | <groupId>org.apache.maven.plugins</groupId>
|
224 | 234 | <artifactId>maven-gpg-plugin</artifactId>
|
225 |
| - <version>1.6</version> |
| 235 | + <version>3.0.1</version> |
226 | 236 | <executions>
|
227 | 237 | <execution>
|
228 | 238 | <id>sign-artifacts</id>
|
229 | 239 | <phase>verify</phase>
|
230 | 240 | <goals>
|
231 | 241 | <goal>sign</goal>
|
232 | 242 | </goals>
|
| 243 | + <configuration> |
| 244 | + <keyname>${gpg.keyname}</keyname> |
| 245 | + <passphraseServerId>${gpg.keyname}</passphraseServerId> |
| 246 | + </configuration> |
233 | 247 | </execution>
|
234 | 248 | </executions>
|
235 | 249 | </plugin>
|
|
0 commit comments