|
276 | 276 | <target>${java.version}</target> |
277 | 277 | </configuration> |
278 | 278 | </plugin> |
| 279 | + |
279 | 280 | <plugin> |
280 | 281 | <groupId>org.apache.maven.plugins</groupId> |
281 | 282 | <artifactId>maven-jar-plugin</artifactId> |
|
293 | 294 | </archive> |
294 | 295 | </configuration> |
295 | 296 | </plugin> |
| 297 | + |
296 | 298 | <plugin> |
297 | 299 | <groupId>org.apache.maven.plugins</groupId> |
298 | 300 | <artifactId>maven-deploy-plugin</artifactId> |
299 | 301 | <version>3.1.1</version> |
300 | 302 | </plugin> |
| 303 | + |
301 | 304 | <plugin> |
302 | 305 | <groupId>org.apache.maven.plugins</groupId> |
303 | 306 | <artifactId>maven-enforcer-plugin</artifactId> |
|
319 | 322 | </execution> |
320 | 323 | </executions> |
321 | 324 | </plugin> |
| 325 | + |
322 | 326 | <plugin> |
323 | 327 | <groupId>org.apache.maven.plugins</groupId> |
324 | 328 | <artifactId>maven-javadoc-plugin</artifactId> |
|
344 | 348 | </execution> |
345 | 349 | </executions> |
346 | 350 | </plugin> |
| 351 | + |
347 | 352 | <plugin> |
348 | 353 | <groupId>org.apache.maven.plugins</groupId> |
349 | 354 | <artifactId>maven-source-plugin</artifactId> |
|
357 | 362 | </execution> |
358 | 363 | </executions> |
359 | 364 | </plugin> |
| 365 | + |
360 | 366 | <plugin> |
361 | 367 | <groupId>org.apache.maven.plugins</groupId> |
362 | 368 | <artifactId>maven-surefire-plugin</artifactId> |
|
374 | 380 | </systemPropertyVariables> |
375 | 381 | </configuration> |
376 | 382 | </plugin> |
| 383 | + |
377 | 384 | <plugin> |
378 | 385 | <groupId>org.apache.maven.plugins</groupId> |
379 | 386 | <artifactId>maven-failsafe-plugin</artifactId> |
|
397 | 404 | </systemPropertyVariables> |
398 | 405 | </configuration> |
399 | 406 | </plugin> |
| 407 | + |
400 | 408 | <plugin> |
401 | 409 | <groupId>org.codehaus.mojo</groupId> |
402 | 410 | <artifactId>flatten-maven-plugin</artifactId> |
|
428 | 436 | </execution> |
429 | 437 | </executions> |
430 | 438 | </plugin> |
| 439 | + |
431 | 440 | <plugin> |
432 | 441 | <groupId>org.sonatype.central</groupId> |
433 | 442 | <artifactId>central-publishing-maven-plugin</artifactId> |
434 | 443 | <version>0.8.0</version> |
435 | 444 | <extensions>true</extensions> |
436 | 445 | <configuration> |
437 | | - <publishingServerId>central</publishingServerId> |
438 | 446 | <autoPublish>true</autoPublish> |
439 | 447 | <deploymentName>R2DBC Postgresql ${project.version}</deploymentName> |
| 448 | + <publishingServerId>central</publishingServerId> |
440 | 449 | </configuration> |
441 | 450 | </plugin> |
442 | 451 | </plugins> |
| 452 | + |
443 | 453 | <resources> |
444 | 454 | <resource> |
445 | 455 | <directory>${project.basedir}</directory> |
|
460 | 470 |
|
461 | 471 | <profile> |
462 | 472 | <id>jmh</id> |
| 473 | + |
463 | 474 | <dependencies> |
464 | 475 | <dependency> |
465 | 476 | <groupId>com.github.mp911de.microbenchmark-runner</groupId> |
|
480 | 491 | <scope>test</scope> |
481 | 492 | </dependency> |
482 | 493 | </dependencies> |
| 494 | + |
483 | 495 | <build> |
484 | 496 | <plugins> |
485 | 497 | <plugin> |
|
501 | 513 | </execution> |
502 | 514 | </executions> |
503 | 515 | </plugin> |
| 516 | + |
504 | 517 | <plugin> |
505 | 518 | <groupId>org.apache.maven.plugins</groupId> |
506 | 519 | <artifactId>maven-surefire-plugin</artifactId> |
|
516 | 529 | <skip>true</skip> |
517 | 530 | </configuration> |
518 | 531 | </plugin> |
| 532 | + |
519 | 533 | <plugin> |
520 | 534 | <groupId>org.codehaus.mojo</groupId> |
521 | 535 | <artifactId>exec-maven-plugin</artifactId> |
|
542 | 556 | </plugin> |
543 | 557 | </plugins> |
544 | 558 | </build> |
| 559 | + |
545 | 560 | <repositories> |
546 | 561 | <repository> |
547 | 562 | <id>jitpack.io</id> |
|
552 | 567 |
|
553 | 568 | <profile> |
554 | 569 | <id>snapshot</id> |
| 570 | + |
555 | 571 | <build> |
556 | 572 | <plugins> |
557 | 573 | <plugin> |
|
564 | 580 |
|
565 | 581 | <profile> |
566 | 582 | <id>central</id> |
| 583 | + |
567 | 584 | <build> |
568 | 585 | <pluginManagement> |
569 | 586 | <plugins> |
570 | | - |
571 | 587 | <!-- Sign JARs --> |
572 | | - |
573 | 588 | <plugin> |
574 | 589 | <groupId>org.apache.maven.plugins</groupId> |
575 | 590 | <artifactId>maven-gpg-plugin</artifactId> |
|
590 | 605 | </execution> |
591 | 606 | </executions> |
592 | 607 | </plugin> |
593 | | - |
594 | 608 | </plugins> |
595 | | - |
596 | 609 | </pluginManagement> |
597 | 610 |
|
598 | 611 | <plugins> |
599 | | - |
600 | 612 | <plugin> |
601 | 613 | <groupId>org.apache.maven.plugins</groupId> |
602 | 614 | <artifactId>maven-gpg-plugin</artifactId> |
603 | 615 | </plugin> |
604 | 616 |
|
605 | 617 | <plugin> |
606 | 618 | <groupId>org.sonatype.central</groupId> |
607 | | - <artifactId>central-publishing-maven-plugin</artifactId> |
| 619 | + <artifactId>central-publishing-maven-plugin</artifactId> |
608 | 620 | </plugin> |
609 | | - |
610 | 621 | </plugins> |
611 | | - |
612 | 622 | </build> |
613 | | - |
614 | | - <distributionManagement> |
615 | | - <repository> |
616 | | - <id>sonatype</id> |
617 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
618 | | - </repository> |
619 | | - </distributionManagement> |
620 | | - |
621 | 623 | </profile> |
622 | | - |
623 | 624 | </profiles> |
624 | 625 |
|
625 | 626 | </project> |
0 commit comments