Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 90b5451

Browse filesBrowse files
Merge pull request #9 from cortexapps/addis-main-dec21
[wip] pull from 1133
2 parents 472adbb + 27b100d commit 90b5451
Copy full SHA for 90b5451

File tree

Expand file treeCollapse file tree

52 files changed

+4855
-115
lines changed
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

52 files changed

+4855
-115
lines changed

‎pom.xml

Copy file name to clipboardExpand all lines: pom.xml
+115-115Lines changed: 115 additions & 115 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<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">
22
<modelVersion>4.0.0</modelVersion>
33
<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>
66
<name>GitHub API for Java</name>
77
<url>https://github-api.kohsuke.org/</url>
88
<description>GitHub API for Java</description>
@@ -393,32 +393,32 @@
393393
</dependency>
394394
</dependencies>
395395
</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+
<!-- &lt;!&ndash; Classes in internal are public but are considered private for API stability purposes &ndash;&gt;-->
407+
<!-- <exclude>org.kohsuke.github.internal</exclude>-->
408+
<!-- &lt;!&ndash; TODO: started failing in CI recently. This is part of the multi-release structure. &ndash;&gt;-->
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>-->
422422
</plugins>
423423
</build>
424424

@@ -618,38 +618,38 @@
618618
</activation>
619619
<build>
620620
<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+
<!-- &lt;!&ndash; There are some tests that take longer or are a little-->
646+
<!-- flaky. Run them here. &ndash;&gt;-->
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>-->
653653
</plugins>
654654
</build>
655655
</profile>
@@ -695,30 +695,30 @@
695695
</execution>
696696
</executions>
697697
</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>-->
722722
</plugins>
723723
</build>
724724
</profile>
@@ -840,37 +840,37 @@
840840
</activation>
841841
<build>
842842
<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>-->
874874
</plugins>
875875
</build>
876876
</profile>

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.