|
73 | 73 | <github.maven.version>0.12</github.maven.version> |
74 | 74 | <github.global.server>github</github.global.server> |
75 | 75 | <maven.surefire-report.version>2.22.2</maven.surefire-report.version> |
76 | | - |
| 76 | + <junit.jupiter.version>5.7.1</junit.jupiter.version> |
77 | 77 | <!--Exclude the files here --> |
78 | 78 | <sonar.exclusions>src/main/java/javax/measure/BinaryPrefix.java,src/main/java/javax/measure/MetricPrefix.java</sonar.exclusions> |
79 | 79 | </properties> |
|
466 | 466 | <plugin> |
467 | 467 | <groupId>org.apache.maven.plugins</groupId> |
468 | 468 | <artifactId>maven-surefire-plugin</artifactId> |
469 | | - <version>${maven.surefire.version}</version> |
470 | 469 | </plugin> |
471 | 470 |
|
472 | 471 | <!-- Coverage --> |
473 | 472 | <plugin> |
474 | 473 | <groupId>org.jacoco</groupId> |
475 | | - <artifactId>jacoco-maven-plugin</artifactId> |
476 | | - <version>${jacoco.plugin.version}</version> |
| 474 | + <artifactId>jacoco-maven-plugin</artifactId> |
477 | 475 | <configuration> |
478 | 476 | <excludes> |
479 | 477 | <exclude>META-INF/versions/**</exclude> |
|
536 | 534 | <plugin> |
537 | 535 | <groupId>org.apache.maven.plugins</groupId> |
538 | 536 | <artifactId>maven-source-plugin</artifactId> |
539 | | - <version>${maven.source.version}</version> |
540 | 537 | <executions> |
541 | 538 | <execution> |
542 | 539 | <id>attach-sources</id> |
|
551 | 548 | <plugin> |
552 | 549 | <groupId>org.apache.maven.plugins</groupId> |
553 | 550 | <artifactId>maven-javadoc-plugin</artifactId> |
554 | | - <version>${maven.javadoc.version}</version> |
555 | 551 | <executions> |
556 | 552 | <execution> |
557 | 553 | <id>attach-javadocs</id> |
|
561 | 557 | </execution> |
562 | 558 | </executions> |
563 | 559 | <configuration> |
| 560 | + <!-- Workaround for https://github.com/unitsofmeasurement/unit-api/issues/220 --> |
| 561 | + <source>8</source> |
| 562 | + </configuration> |
| 563 | + <!-- |
| 564 | + <configuration> |
| 565 | + <sourcepath>src/main/java;src/main/jdk9</sourcepath> |
564 | 566 | <detectLinks>true</detectLinks> |
565 | 567 | <keywords>true</keywords> |
566 | 568 | <linksource>true</linksource> |
|
591 | 593 | <tag><name>see</name></tag> |
592 | 594 | </tags> |
593 | 595 | </configuration> |
| 596 | + --> |
594 | 597 | </plugin> |
595 | 598 |
|
596 | 599 | <!-- JAR packaging --> |
597 | 600 | <plugin> |
598 | 601 | <groupId>org.apache.maven.plugins</groupId> |
599 | 602 | <artifactId>maven-jar-plugin</artifactId> |
600 | | - <version>${maven.jar.version}</version> |
601 | 603 | <configuration> |
602 | 604 | <archive> |
603 | 605 | <manifest> |
|
627 | 629 | <plugin> |
628 | 630 | <groupId>org.apache.felix</groupId> |
629 | 631 | <artifactId>maven-bundle-plugin</artifactId> |
630 | | - <version>${felix.plugin.version}</version> |
631 | 632 | <extensions>true</extensions> |
632 | 633 | </plugin> |
633 | 634 |
|
634 | 635 | <!-- Resources --> |
635 | 636 | <plugin> |
636 | 637 | <groupId>org.apache.maven.plugins</groupId> |
637 | 638 | <artifactId>maven-resources-plugin</artifactId> |
638 | | - <version>${maven.resources.version}</version> |
639 | 639 | <configuration> |
640 | 640 | <encoding>${project.build.sourceEncoding}</encoding> |
641 | 641 | </configuration> |
|
709 | 709 | <plugin> |
710 | 710 | <groupId>org.apache.maven.plugins</groupId> |
711 | 711 | <artifactId>maven-site-plugin</artifactId> |
712 | | - <version>${maven.site.version}</version> |
713 | 712 | </plugin> |
714 | 713 | </plugins> |
715 | 714 | </build> |
|
0 commit comments