|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2 | 2 | <modelVersion>4.0.0</modelVersion>
|
3 | 3 | <groupId>org.kohsuke</groupId>
|
4 |
| - <artifactId>github-api</artifactId> |
5 |
| - <version>1.312-SNAPSHOT</version> |
| 4 | + <artifactId>cortexapps-github-api</artifactId> |
| 5 | + <version>1.313</version> |
6 | 6 | <name>GitHub API for Java</name>
|
7 | 7 | <url>https://github-api.kohsuke.org/</url>
|
8 | 8 | <description>GitHub API for Java</description>
|
|
393 | 393 | </dependency>
|
394 | 394 | </dependencies>
|
395 | 395 | </plugin>
|
396 |
| - <plugin> |
397 |
| - <groupId>com.github.siom79.japicmp</groupId> |
398 |
| - <artifactId>japicmp-maven-plugin</artifactId> |
399 |
| - <version>0.16.0</version> |
400 |
| - <configuration> |
401 |
| - <parameter> |
402 |
| - <breakBuildOnBinaryIncompatibleModifications>true</breakBuildOnBinaryIncompatibleModifications> |
403 |
| - <onlyModified>true</onlyModified> |
404 |
| - <includeSynthetic>true</includeSynthetic> |
405 |
| - <excludes> |
406 |
| - <!-- Classes in internal are public but are considered private for API stability purposes --> |
407 |
| - <exclude>org.kohsuke.github.internal</exclude> |
408 |
| - <!-- TODO: started failing in CI recently. This is part of the multi-release structure. --> |
409 |
| - <exclude>org.kohsuke.github.extras.HttpClientGitHubConnector#HttpClientGitHubConnector(java.net.http.HttpClient)</exclude> |
410 |
| - </excludes> |
411 |
| - </parameter> |
412 |
| - </configuration> |
413 |
| - <executions> |
414 |
| - <execution> |
415 |
| - <phase>verify</phase> |
416 |
| - <goals> |
417 |
| - <goal>cmp</goal> |
418 |
| - </goals> |
419 |
| - </execution> |
420 |
| - </executions> |
421 |
| - </plugin> |
| 396 | +<!-- <plugin>--> |
| 397 | +<!-- <groupId>com.github.siom79.japicmp</groupId>--> |
| 398 | +<!-- <artifactId>japicmp-maven-plugin</artifactId>--> |
| 399 | +<!-- <version>0.16.0</version>--> |
| 400 | +<!-- <configuration>--> |
| 401 | +<!-- <parameter>--> |
| 402 | +<!-- <breakBuildOnBinaryIncompatibleModifications>true</breakBuildOnBinaryIncompatibleModifications>--> |
| 403 | +<!-- <onlyModified>true</onlyModified>--> |
| 404 | +<!-- <includeSynthetic>true</includeSynthetic>--> |
| 405 | +<!-- <excludes>--> |
| 406 | +<!-- <!– Classes in internal are public but are considered private for API stability purposes –>--> |
| 407 | +<!-- <exclude>org.kohsuke.github.internal</exclude>--> |
| 408 | +<!-- <!– TODO: started failing in CI recently. This is part of the multi-release structure. –>--> |
| 409 | +<!-- <exclude>org.kohsuke.github.extras.HttpClientGitHubConnector#HttpClientGitHubConnector(java.net.http.HttpClient)</exclude>--> |
| 410 | +<!-- </excludes>--> |
| 411 | +<!-- </parameter>--> |
| 412 | +<!-- </configuration>--> |
| 413 | +<!-- <executions>--> |
| 414 | +<!-- <execution>--> |
| 415 | +<!-- <phase>verify</phase>--> |
| 416 | +<!-- <goals>--> |
| 417 | +<!-- <goal>cmp</goal>--> |
| 418 | +<!-- </goals>--> |
| 419 | +<!-- </execution>--> |
| 420 | +<!-- </executions>--> |
| 421 | +<!-- </plugin>--> |
422 | 422 | </plugins>
|
423 | 423 | </build>
|
424 | 424 |
|
|
618 | 618 | </activation>
|
619 | 619 | <build>
|
620 | 620 | <plugins>
|
621 |
| - <plugin> |
622 |
| - <artifactId>maven-surefire-plugin</artifactId> |
623 |
| - <executions> |
624 |
| - <execution> |
625 |
| - <id>okhttp-test</id> |
626 |
| - <phase>integration-test</phase> |
627 |
| - <goals> |
628 |
| - <goal>test</goal> |
629 |
| - </goals> |
630 |
| - <configuration> |
631 |
| - <classesDirectory>${project.basedir}/target/github-api-${project.version}.jar</classesDirectory> |
632 |
| - <excludesFile>src/test/resources/slow-or-flaky-tests.txt</excludesFile> |
633 |
| - <argLine>@{jacoco.surefire.argLine} ${surefire.argLine} -Dtest.github.connector=okhttp</argLine> |
634 |
| - </configuration> |
635 |
| - </execution> |
636 |
| - <execution> |
637 |
| - <id>slow-or-flaky-test</id> |
638 |
| - <phase>integration-test</phase> |
639 |
| - <goals> |
640 |
| - <goal>test</goal> |
641 |
| - </goals> |
642 |
| - <configuration> |
643 |
| - <classesDirectory>${project.basedir}/target/github-api-${project.version}.jar</classesDirectory> |
644 |
| - <rerunFailingTestsCount>2</rerunFailingTestsCount> |
645 |
| - <!-- There are some tests that take longer or are a little |
646 |
| - flaky. Run them here. --> |
647 |
| - <includesFile>src/test/resources/slow-or-flaky-tests.txt</includesFile> |
648 |
| - <argLine>@{jacoco.surefire.argLine} ${surefire.argLine}</argLine> |
649 |
| - </configuration> |
650 |
| - </execution> |
651 |
| - </executions> |
652 |
| - </plugin> |
| 621 | +<!-- <plugin>--> |
| 622 | +<!-- <artifactId>maven-surefire-plugin</artifactId>--> |
| 623 | +<!-- <executions>--> |
| 624 | +<!-- <execution>--> |
| 625 | +<!-- <id>okhttp-test</id>--> |
| 626 | +<!-- <phase>integration-test</phase>--> |
| 627 | +<!-- <goals>--> |
| 628 | +<!-- <goal>test</goal>--> |
| 629 | +<!-- </goals>--> |
| 630 | +<!-- <configuration>--> |
| 631 | +<!-- <classesDirectory>${project.basedir}/target/github-api-${project.version}.jar</classesDirectory>--> |
| 632 | +<!-- <excludesFile>src/test/resources/slow-or-flaky-tests.txt</excludesFile>--> |
| 633 | +<!-- <argLine>@{jacoco.surefire.argLine} ${surefire.argLine} -Dtest.github.connector=okhttp</argLine>--> |
| 634 | +<!-- </configuration>--> |
| 635 | +<!-- </execution>--> |
| 636 | +<!-- <execution>--> |
| 637 | +<!-- <id>slow-or-flaky-test</id>--> |
| 638 | +<!-- <phase>integration-test</phase>--> |
| 639 | +<!-- <goals>--> |
| 640 | +<!-- <goal>test</goal>--> |
| 641 | +<!-- </goals>--> |
| 642 | +<!-- <configuration>--> |
| 643 | +<!-- <classesDirectory>${project.basedir}/target/github-api-${project.version}.jar</classesDirectory>--> |
| 644 | +<!-- <rerunFailingTestsCount>2</rerunFailingTestsCount>--> |
| 645 | +<!-- <!– There are some tests that take longer or are a little--> |
| 646 | +<!-- flaky. Run them here. –>--> |
| 647 | +<!-- <includesFile>src/test/resources/slow-or-flaky-tests.txt</includesFile>--> |
| 648 | +<!-- <argLine>@{jacoco.surefire.argLine} ${surefire.argLine}</argLine>--> |
| 649 | +<!-- </configuration>--> |
| 650 | +<!-- </execution>--> |
| 651 | +<!-- </executions>--> |
| 652 | +<!-- </plugin>--> |
653 | 653 | </plugins>
|
654 | 654 | </build>
|
655 | 655 | </profile>
|
|
695 | 695 | </execution>
|
696 | 696 | </executions>
|
697 | 697 | </plugin>
|
698 |
| - <plugin> |
699 |
| - <groupId>org.apache.maven.plugins</groupId> |
700 |
| - <artifactId>maven-enforcer-plugin</artifactId> |
701 |
| - <version>3.1.0</version> |
702 |
| - <executions> |
703 |
| - <execution> |
704 |
| - <id>enforce-jacoco-exist</id> |
705 |
| - <phase>verify</phase> |
706 |
| - <goals> |
707 |
| - <goal>enforce</goal> |
708 |
| - </goals> |
709 |
| - <configuration> |
710 |
| - <rules> |
711 |
| - <requireFilesExist> |
712 |
| - <files> |
713 |
| - <file>${project.build.directory}/jacoco-it.exec</file> |
714 |
| - </files> |
715 |
| - </requireFilesExist> |
716 |
| - </rules> |
717 |
| - <fail>true</fail> |
718 |
| - </configuration> |
719 |
| - </execution> |
720 |
| - </executions> |
721 |
| - </plugin> |
| 698 | +<!-- <plugin>--> |
| 699 | +<!-- <groupId>org.apache.maven.plugins</groupId>--> |
| 700 | +<!-- <artifactId>maven-enforcer-plugin</artifactId>--> |
| 701 | +<!-- <version>3.1.0</version>--> |
| 702 | +<!-- <executions>--> |
| 703 | +<!-- <execution>--> |
| 704 | +<!-- <id>enforce-jacoco-exist</id>--> |
| 705 | +<!-- <phase>verify</phase>--> |
| 706 | +<!-- <goals>--> |
| 707 | +<!-- <goal>enforce</goal>--> |
| 708 | +<!-- </goals>--> |
| 709 | +<!-- <configuration>--> |
| 710 | +<!-- <rules>--> |
| 711 | +<!-- <requireFilesExist>--> |
| 712 | +<!-- <files>--> |
| 713 | +<!-- <file>${project.build.directory}/jacoco-it.exec</file>--> |
| 714 | +<!-- </files>--> |
| 715 | +<!-- </requireFilesExist>--> |
| 716 | +<!-- </rules>--> |
| 717 | +<!-- <fail>true</fail>--> |
| 718 | +<!-- </configuration>--> |
| 719 | +<!-- </execution>--> |
| 720 | +<!-- </executions>--> |
| 721 | +<!-- </plugin>--> |
722 | 722 | </plugins>
|
723 | 723 | </build>
|
724 | 724 | </profile>
|
|
840 | 840 | </activation>
|
841 | 841 | <build>
|
842 | 842 | <plugins>
|
843 |
| - <plugin> |
844 |
| - <artifactId>maven-surefire-plugin</artifactId> |
845 |
| - <executions> |
846 |
| - <execution> |
847 |
| - <id>java11-test</id> |
848 |
| - <phase>integration-test</phase> |
849 |
| - <goals> |
850 |
| - <goal>test</goal> |
851 |
| - </goals> |
852 |
| - <configuration> |
853 |
| - <classesDirectory>${project.basedir}/target/github-api-${project.version}.jar</classesDirectory> |
854 |
| - <useSystemClassLoader>false</useSystemClassLoader> |
855 |
| - <excludesFile>src/test/resources/slow-or-flaky-tests.txt</excludesFile> |
856 |
| - <argLine>@{jacoco.surefire.argLine} ${surefire.argLine} -Dtest.github.connector=httpclient</argLine> |
857 |
| - </configuration> |
858 |
| - </execution> |
859 |
| - <execution> |
860 |
| - <id>java11-urlconnection-test</id> |
861 |
| - <phase>integration-test</phase> |
862 |
| - <goals> |
863 |
| - <goal>test</goal> |
864 |
| - </goals> |
865 |
| - <configuration> |
866 |
| - <classesDirectory>${project.basedir}/target/github-api-${project.version}.jar</classesDirectory> |
867 |
| - <useSystemClassLoader>false</useSystemClassLoader> |
868 |
| - <excludesFile>src/test/resources/slow-or-flaky-tests.txt</excludesFile> |
869 |
| - <argLine>@{jacoco.surefire.argLine} ${surefire.argLine} -Dtest.github.connector=urlconnection</argLine> |
870 |
| - </configuration> |
871 |
| - </execution> |
872 |
| - </executions> |
873 |
| - </plugin> |
| 843 | +<!-- <plugin>--> |
| 844 | +<!-- <artifactId>maven-surefire-plugin</artifactId>--> |
| 845 | +<!-- <executions>--> |
| 846 | +<!-- <execution>--> |
| 847 | +<!-- <id>java11-test</id>--> |
| 848 | +<!-- <phase>integration-test</phase>--> |
| 849 | +<!-- <goals>--> |
| 850 | +<!-- <goal>test</goal>--> |
| 851 | +<!-- </goals>--> |
| 852 | +<!-- <configuration>--> |
| 853 | +<!-- <classesDirectory>${project.basedir}/target/github-api-${project.version}.jar</classesDirectory>--> |
| 854 | +<!-- <useSystemClassLoader>false</useSystemClassLoader>--> |
| 855 | +<!-- <excludesFile>src/test/resources/slow-or-flaky-tests.txt</excludesFile>--> |
| 856 | +<!-- <argLine>@{jacoco.surefire.argLine} ${surefire.argLine} -Dtest.github.connector=httpclient</argLine>--> |
| 857 | +<!-- </configuration>--> |
| 858 | +<!-- </execution>--> |
| 859 | +<!-- <execution>--> |
| 860 | +<!-- <id>java11-urlconnection-test</id>--> |
| 861 | +<!-- <phase>integration-test</phase>--> |
| 862 | +<!-- <goals>--> |
| 863 | +<!-- <goal>test</goal>--> |
| 864 | +<!-- </goals>--> |
| 865 | +<!-- <configuration>--> |
| 866 | +<!-- <classesDirectory>${project.basedir}/target/github-api-${project.version}.jar</classesDirectory>--> |
| 867 | +<!-- <useSystemClassLoader>false</useSystemClassLoader>--> |
| 868 | +<!-- <excludesFile>src/test/resources/slow-or-flaky-tests.txt</excludesFile>--> |
| 869 | +<!-- <argLine>@{jacoco.surefire.argLine} ${surefire.argLine} -Dtest.github.connector=urlconnection</argLine>--> |
| 870 | +<!-- </configuration>--> |
| 871 | +<!-- </execution>--> |
| 872 | +<!-- </executions>--> |
| 873 | +<!-- </plugin>--> |
874 | 874 | </plugins>
|
875 | 875 | </build>
|
876 | 876 | </profile>
|
|
0 commit comments