|
178 | 178 | </dependency> |
179 | 179 | </dependencies> |
180 | 180 |
|
181 | | - <distributionManagement> |
182 | | - <snapshotRepository> |
183 | | - <id>ossrh</id> |
184 | | - <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
185 | | - </snapshotRepository> |
186 | | - <repository> |
187 | | - <id>ossrh</id> |
188 | | - <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url> |
189 | | - </repository> |
190 | | - </distributionManagement> |
191 | | - |
192 | | - |
193 | | - |
194 | 181 | <build> |
195 | 182 | <resources> |
196 | 183 | <resource> |
|
203 | 190 | </resources> |
204 | 191 | <plugins> |
205 | 192 |
|
206 | | - <!-- Javadoc plugin --> |
207 | | - <plugin> |
208 | | - <groupId>org.apache.maven.plugins</groupId> |
209 | | - <artifactId>maven-javadoc-plugin</artifactId> |
210 | | - <version>3.12.0</version> |
211 | | - <configuration> |
212 | | - <doclint>none</doclint> |
213 | | - <source>8</source> |
214 | | - <additionalJOptions> |
215 | | - <additionalJOption>-Xdoclint:none</additionalJOption> |
216 | | - </additionalJOptions> |
217 | | - </configuration> |
218 | | - <executions> |
219 | | - <execution> |
220 | | - <id>attach-javadocs</id> |
221 | | - <goals> |
222 | | - <goal>jar</goal> |
223 | | - </goals> |
224 | | - </execution> |
225 | | - </executions> |
226 | | - </plugin> |
227 | 193 | <plugin> |
228 | 194 | <groupId>org.apache.maven.plugins</groupId> |
229 | 195 | <artifactId>maven-compiler-plugin</artifactId> |
|
250 | 216 | </configuration> |
251 | 217 | </plugin> |
252 | 218 |
|
253 | | - <plugin> |
254 | | - <groupId>org.apache.maven.plugins</groupId> |
255 | | - <artifactId>maven-source-plugin</artifactId> |
256 | | - <version>3.3.0</version> |
257 | | - <executions> |
258 | | - <execution> |
259 | | - <id>attach-sources</id> |
260 | | - <goals> |
261 | | - <goal>jar</goal> |
262 | | - </goals> |
263 | | - </execution> |
264 | | - </executions> |
265 | | - </plugin> |
266 | | - |
267 | 219 | <plugin> |
268 | 220 | <groupId>org.jacoco</groupId> |
269 | 221 | <artifactId>jacoco-maven-plugin</artifactId> |
|
308 | 260 |
|
309 | 261 | </plugins> |
310 | 262 | </build> |
311 | | - |
312 | | - <profiles> |
313 | | - <profile> |
314 | | - <id>release</id> |
315 | | - <activation> |
316 | | - <property> |
317 | | - <name>performRelease</name> |
318 | | - <value>true</value> |
319 | | - </property> |
320 | | - </activation> |
321 | | - <build> |
322 | | - <plugins> |
323 | | - <plugin> |
324 | | - <groupId>org.apache.maven.plugins</groupId> |
325 | | - <artifactId>maven-gpg-plugin</artifactId> |
326 | | - <version>3.2.5</version> |
327 | | - <configuration> |
328 | | - <gpgArguments> |
329 | | - <arg>--pinentry-mode</arg> |
330 | | - <arg>loopback</arg> |
331 | | - </gpgArguments> |
332 | | - </configuration> |
333 | | - <executions> |
334 | | - <execution> |
335 | | - <id>sign-artifacts</id> |
336 | | - <phase>verify</phase> |
337 | | - <goals> |
338 | | - <goal>sign</goal> |
339 | | - </goals> |
340 | | - <configuration> |
341 | | - <gpgArguments> |
342 | | - <arg>--pinentry-mode</arg> |
343 | | - <arg>loopback</arg> |
344 | | - </gpgArguments> |
345 | | - </configuration> |
346 | | - </execution> |
347 | | - </executions> |
348 | | - </plugin> |
349 | | - |
350 | | - <plugin> |
351 | | - <groupId>org.sonatype.central</groupId> |
352 | | - <artifactId>central-publishing-maven-plugin</artifactId> |
353 | | - <version>0.5.0</version> |
354 | | - <extensions>true</extensions> |
355 | | - <configuration> |
356 | | - <publishingServerId>central</publishingServerId> |
357 | | - <autoPublish>true</autoPublish> |
358 | | - </configuration> |
359 | | - </plugin> |
360 | | - </plugins> |
361 | | - </build> |
362 | | - </profile> |
363 | | - </profiles> |
364 | | - |
365 | 263 | </project> |
366 | 264 |
|
0 commit comments