|
270 | 270 | <release>8</release> |
271 | 271 | </configuration> |
272 | 272 | </plugin> |
| 273 | + |
273 | 274 | <plugin> |
274 | 275 | <groupId>org.apache.maven.plugins</groupId> |
275 | 276 | <artifactId>maven-jar-plugin</artifactId> |
|
287 | 288 | </archive> |
288 | 289 | </configuration> |
289 | 290 | </plugin> |
| 291 | + |
290 | 292 | <plugin> |
291 | 293 | <groupId>org.apache.maven.plugins</groupId> |
292 | 294 | <artifactId>maven-deploy-plugin</artifactId> |
293 | 295 | <version>3.1.1</version> |
294 | 296 | </plugin> |
| 297 | + |
295 | 298 | <plugin> |
296 | 299 | <groupId>org.apache.maven.plugins</groupId> |
297 | 300 | <artifactId>maven-enforcer-plugin</artifactId> |
|
313 | 316 | </execution> |
314 | 317 | </executions> |
315 | 318 | </plugin> |
| 319 | + |
316 | 320 | <plugin> |
317 | 321 | <groupId>org.apache.maven.plugins</groupId> |
318 | 322 | <artifactId>maven-javadoc-plugin</artifactId> |
|
338 | 342 | </execution> |
339 | 343 | </executions> |
340 | 344 | </plugin> |
| 345 | + |
341 | 346 | <plugin> |
342 | 347 | <groupId>org.apache.maven.plugins</groupId> |
343 | 348 | <artifactId>maven-source-plugin</artifactId> |
|
351 | 356 | </execution> |
352 | 357 | </executions> |
353 | 358 | </plugin> |
| 359 | + |
354 | 360 | <plugin> |
355 | 361 | <groupId>org.apache.maven.plugins</groupId> |
356 | 362 | <artifactId>maven-surefire-plugin</artifactId> |
|
368 | 374 | </systemPropertyVariables> |
369 | 375 | </configuration> |
370 | 376 | </plugin> |
| 377 | + |
371 | 378 | <plugin> |
372 | 379 | <groupId>org.apache.maven.plugins</groupId> |
373 | 380 | <artifactId>maven-failsafe-plugin</artifactId> |
|
391 | 398 | </systemPropertyVariables> |
392 | 399 | </configuration> |
393 | 400 | </plugin> |
| 401 | + |
394 | 402 | <plugin> |
395 | 403 | <groupId>org.codehaus.mojo</groupId> |
396 | 404 | <artifactId>flatten-maven-plugin</artifactId> |
|
422 | 430 | </execution> |
423 | 431 | </executions> |
424 | 432 | </plugin> |
| 433 | + |
425 | 434 | <plugin> |
426 | 435 | <groupId>org.sonatype.central</groupId> |
427 | 436 | <artifactId>central-publishing-maven-plugin</artifactId> |
428 | 437 | <version>0.8.0</version> |
429 | 438 | <extensions>true</extensions> |
430 | 439 | <configuration> |
431 | | - <publishingServerId>central</publishingServerId> |
432 | 440 | <autoPublish>true</autoPublish> |
433 | 441 | <deploymentName>R2DBC Postgresql ${project.version}</deploymentName> |
| 442 | + <publishingServerId>central</publishingServerId> |
434 | 443 | </configuration> |
435 | 444 | </plugin> |
436 | 445 | </plugins> |
| 446 | + |
437 | 447 | <resources> |
438 | 448 | <resource> |
439 | 449 | <directory>${project.basedir}</directory> |
|
454 | 464 |
|
455 | 465 | <profile> |
456 | 466 | <id>jmh</id> |
| 467 | + |
457 | 468 | <dependencies> |
458 | 469 | <dependency> |
459 | 470 | <groupId>com.github.mp911de.microbenchmark-runner</groupId> |
|
474 | 485 | <scope>test</scope> |
475 | 486 | </dependency> |
476 | 487 | </dependencies> |
| 488 | + |
477 | 489 | <build> |
478 | 490 | <plugins> |
479 | 491 | <plugin> |
|
495 | 507 | </execution> |
496 | 508 | </executions> |
497 | 509 | </plugin> |
| 510 | + |
498 | 511 | <plugin> |
499 | 512 | <groupId>org.apache.maven.plugins</groupId> |
500 | 513 | <artifactId>maven-surefire-plugin</artifactId> |
|
510 | 523 | <skip>true</skip> |
511 | 524 | </configuration> |
512 | 525 | </plugin> |
| 526 | + |
513 | 527 | <plugin> |
514 | 528 | <groupId>org.codehaus.mojo</groupId> |
515 | 529 | <artifactId>exec-maven-plugin</artifactId> |
|
536 | 550 | </plugin> |
537 | 551 | </plugins> |
538 | 552 | </build> |
| 553 | + |
539 | 554 | <repositories> |
540 | 555 | <repository> |
541 | 556 | <id>jitpack.io</id> |
|
546 | 561 |
|
547 | 562 | <profile> |
548 | 563 | <id>snapshot</id> |
| 564 | + |
549 | 565 | <build> |
550 | 566 | <plugins> |
551 | 567 | <plugin> |
|
558 | 574 |
|
559 | 575 | <profile> |
560 | 576 | <id>central</id> |
| 577 | + |
561 | 578 | <build> |
562 | 579 | <pluginManagement> |
563 | 580 | <plugins> |
564 | | - |
565 | 581 | <!-- Sign JARs --> |
566 | | - |
567 | 582 | <plugin> |
568 | 583 | <groupId>org.apache.maven.plugins</groupId> |
569 | 584 | <artifactId>maven-gpg-plugin</artifactId> |
|
584 | 599 | </execution> |
585 | 600 | </executions> |
586 | 601 | </plugin> |
587 | | - |
588 | 602 | </plugins> |
589 | | - |
590 | 603 | </pluginManagement> |
591 | 604 |
|
592 | 605 | <plugins> |
593 | | - |
594 | 606 | <plugin> |
595 | 607 | <groupId>org.apache.maven.plugins</groupId> |
596 | 608 | <artifactId>maven-gpg-plugin</artifactId> |
|
600 | 612 | <groupId>org.sonatype.central</groupId> |
601 | 613 | <artifactId>central-publishing-maven-plugin</artifactId> |
602 | 614 | </plugin> |
603 | | - |
604 | 615 | </plugins> |
605 | | - |
606 | 616 | </build> |
607 | | - |
608 | | - <distributionManagement> |
609 | | - <repository> |
610 | | - <id>sonatype</id> |
611 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
612 | | - </repository> |
613 | | - </distributionManagement> |
614 | | - |
615 | 617 | </profile> |
616 | | - |
617 | 618 | </profiles> |
618 | 619 |
|
619 | 620 | </project> |
0 commit comments