Skip to content

Commit

Permalink
Create unbridged release branch
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwiseman committed Nov 23, 2023
1 parent b949798 commit f02d446
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 13 deletions.
16 changes: 3 additions & 13 deletions pom.xml
@@ -1,7 +1,7 @@
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.kohsuke</groupId>
<artifactId>github-api</artifactId>
<artifactId>github-api-unbridged</artifactId>
<version>1.318</version>
<name>GitHub API for Java</name>
<url>https://github-api.kohsuke.org/</url>
Expand Down Expand Up @@ -364,18 +364,6 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.infradna.tool</groupId>
<artifactId>bridge-method-injector</artifactId>
<version>1.29</version>
<executions>
<execution>
<goals>
<goal>process</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
Expand Down Expand Up @@ -444,6 +432,8 @@
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.17.2</version>
<configuration>
<!-- Disabled until 1.318 unbridged is published -->
<skip>true</skip>
<parameter>
<breakBuildOnBinaryIncompatibleModifications>true</breakBuildOnBinaryIncompatibleModifications>
<onlyModified>true</onlyModified>
Expand Down
2 changes: 2 additions & 0 deletions src/test/java/org/kohsuke/github/BridgeMethodTest.java
@@ -1,6 +1,7 @@
package org.kohsuke.github;

import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;

import java.io.IOException;
Expand Down Expand Up @@ -29,6 +30,7 @@ public class BridgeMethodTest extends Assert {
* @throws IOException
* Signals that an I/O exception has occurred.
*/
@Ignore("Bridge methods disabled in this branch")
@Test
public void testBridgeMethods() throws IOException {

Expand Down

0 comments on commit f02d446

Please sign in to comment.