Skip to content

Commit a8a0bcb

Browse files
author
Marcos Cela López
authored
Merge branch 'master' into feat/credential-provider-refresh
2 parents 0e2bf23 + 7e1531d commit a8a0bcb

37 files changed

+77
-31
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>org.kohsuke</groupId>
44
<artifactId>github-api</artifactId>
5-
<version>1.118-SNAPSHOT</version>
5+
<version>1.120-SNAPSHOT</version>
66
<name>GitHub API for Java</name>
77
<url>https://github-api.kohsuke.org/</url>
88
<description>GitHub API for Java</description>
@@ -154,7 +154,7 @@
154154
<exclude>org.kohsuke.github.example.*</exclude>
155155

156156
<!-- No methods -->
157-
<exclude>org.kohsuke.github.Previews</exclude>
157+
<exclude>org.kohsuke.github.internal.Previews</exclude>
158158

159159
<!-- Deprecated -->
160160
<exclude>org.kohsuke.github.extras.OkHttp3Connector</exclude>
@@ -472,7 +472,7 @@
472472
<dependency>
473473
<groupId>org.kohsuke.stapler</groupId>
474474
<artifactId>stapler</artifactId>
475-
<version>1.260</version>
475+
<version>1.262</version>
476476
<scope>test</scope>
477477
</dependency>
478478
<dependency>

src/main/java/org/kohsuke/github/GHApp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import java.util.List;
66
import java.util.Map;
77

8-
import static org.kohsuke.github.Previews.MACHINE_MAN;
8+
import static org.kohsuke.github.internal.Previews.MACHINE_MAN;
99

1010
/**
1111
* A Github App.

src/main/java/org/kohsuke/github/GHAppCreateTokenBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import java.util.List;
66
import java.util.Map;
77

8-
import static org.kohsuke.github.Previews.MACHINE_MAN;
8+
import static org.kohsuke.github.internal.Previews.MACHINE_MAN;
99

1010
/**
1111
* Creates a access token for a GitHub App Installation

src/main/java/org/kohsuke/github/GHAppInstallation.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
import java.util.List;
99
import java.util.Map;
1010

11-
import static org.kohsuke.github.Previews.GAMBIT;
12-
import static org.kohsuke.github.Previews.MACHINE_MAN;
11+
import static org.kohsuke.github.internal.Previews.GAMBIT;
12+
import static org.kohsuke.github.internal.Previews.MACHINE_MAN;
1313

1414
/**
1515
* A Github App Installation.

src/main/java/org/kohsuke/github/GHBranch.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import com.fasterxml.jackson.annotation.JsonCreator;
44
import com.fasterxml.jackson.annotation.JsonProperty;
55
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
6+
import org.kohsuke.github.internal.Previews;
67

78
import java.io.IOException;
89
import java.net.URL;

src/main/java/org/kohsuke/github/GHBranchProtection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import java.io.IOException;
77
import java.util.Collection;
88

9-
import static org.kohsuke.github.Previews.ZZZAX;
9+
import static org.kohsuke.github.internal.Previews.ZZZAX;
1010

1111
/**
1212
* The type GHBranchProtection.

src/main/java/org/kohsuke/github/GHBranchProtectionBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import java.util.Map;
1313
import java.util.Set;
1414

15-
import static org.kohsuke.github.Previews.*;
15+
import static org.kohsuke.github.internal.Previews.LUKE_CAGE;
1616

1717
/**
1818
* Builder to configure the branch protection settings.

src/main/java/org/kohsuke/github/GHCheckRun.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import com.fasterxml.jackson.annotation.JsonProperty;
44
import edu.umd.cs.findbugs.annotations.NonNull;
55
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
6+
import org.kohsuke.github.internal.Previews;
67

78
import java.io.IOException;
89
import java.net.URL;

src/main/java/org/kohsuke/github/GHCheckRunBuilder.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import edu.umd.cs.findbugs.annotations.CheckForNull;
2929
import edu.umd.cs.findbugs.annotations.NonNull;
3030
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
31+
import org.kohsuke.github.internal.Previews;
3132

3233
import java.io.IOException;
3334
import java.util.Collections;

src/main/java/org/kohsuke/github/GHCommit.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
import java.util.Date;
1212
import java.util.List;
1313

14-
import static org.kohsuke.github.Previews.ANTIOPE;
15-
import static org.kohsuke.github.Previews.GROOT;
14+
import static org.kohsuke.github.internal.Previews.ANTIOPE;
15+
import static org.kohsuke.github.internal.Previews.GROOT;
1616

1717
/**
1818
* A commit in a repository.

0 commit comments

Comments
 (0)