File tree 1 file changed +41
-1
lines changed
1 file changed +41
-1
lines changed Original file line number Diff line number Diff line change 591
591
<profile >
592
592
<id >java12</id >
593
593
<activation >
594
- <jdk >[12,)</jdk >
594
+ <jdk >[12,20 )</jdk >
595
595
</activation >
596
596
<properties >
597
597
<!-- JDK 12 minimal source and target versions are 1.7 -->
631
631
</plugins >
632
632
</reporting >
633
633
</profile >
634
+ <profile >
635
+ <id >java20</id >
636
+ <activation >
637
+ <jdk >[20,)</jdk >
638
+ </activation >
639
+ <properties >
640
+ <!-- JDK 20 minimal source and target versions are 1.8 -->
641
+ <jdkVersion >1.8</jdkVersion >
642
+ </properties >
643
+ <build >
644
+ <plugins >
645
+ <plugin >
646
+ <artifactId >maven-javadoc-plugin</artifactId >
647
+ <configuration >
648
+ <source >1.8</source >
649
+ <failOnError >false</failOnError >
650
+ </configuration >
651
+ </plugin >
652
+ <plugin >
653
+ <artifactId >maven-compiler-plugin</artifactId >
654
+ <configuration >
655
+ <compilerArgs >
656
+ <arg >-Xdoclint:none</arg >
657
+ </compilerArgs >
658
+ </configuration >
659
+ </plugin >
660
+ </plugins >
661
+ </build >
662
+ <reporting >
663
+ <plugins >
664
+ <plugin >
665
+ <artifactId >maven-javadoc-plugin</artifactId >
666
+ <configuration >
667
+ <source >1.8</source >
668
+ <failOnError >false</failOnError >
669
+ </configuration >
670
+ </plugin >
671
+ </plugins >
672
+ </reporting >
673
+ </profile >
634
674
</profiles >
635
675
</project >
You can’t perform that action at this time.
0 commit comments