Skip to content

Commit 3c619a3

Browse files
committed
fix check id
1 parent 4a61f43 commit 3c619a3

2 files changed

Lines changed: 16 additions & 65 deletions

File tree

pom.xml

Lines changed: 15 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<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/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<artifactId>github-client</artifactId>
6-
<version>0.1.36-SNAPSHOT</version>
5+
<artifactId>github-client-baqends</artifactId>
6+
<version>0.1.36</version>
77

88
<parent>
99
<groupId>com.spotify</groupId>
@@ -19,68 +19,6 @@
1919
</license>
2020
</licenses>
2121

22-
<scm>
23-
<connection>scm:git:https://github.com/spotify/github-java-client.git</connection>
24-
<developerConnection>scm:git:git@github.com:spotify/github-java-client.git</developerConnection>
25-
<url>scm:https://github.com/spotify/github-java-client/</url>
26-
<tag>HEAD</tag>
27-
</scm>
28-
29-
<organization>
30-
<name>Spotify AB</name>
31-
<url>http://www.spotify.com</url>
32-
</organization>
33-
34-
<distributionManagement>
35-
<snapshotRepository>
36-
<id>ossrh</id>
37-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
38-
</snapshotRepository>
39-
<repository>
40-
<id>ossrh</id>
41-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
42-
</repository>
43-
</distributionManagement>
44-
45-
<developers>
46-
<developer>
47-
<id>henriquetruta</id>
48-
<name>Henrique Truta</name>
49-
<email>henriquet@spotify.com</email>
50-
<organization>Spotify AB</organization>
51-
<organizationUrl>http://www.spotify.com</organizationUrl>
52-
</developer>
53-
<developer>
54-
<id>hewhomustnotbenamed</id>
55-
<name>Abhimanyu Shegokar</name>
56-
<email>abhimanyus@spotify.com</email>
57-
<organization>Spotify AB</organization>
58-
<organizationUrl>http://www.spotify.com</organizationUrl>
59-
</developer>
60-
</developers>
61-
62-
<repositories>
63-
<repository>
64-
<id>apache.snapshots</id>
65-
<name>Apache Development Snapshot Repository</name>
66-
<url>https://repository.apache.org/content/repositories/snapshots/</url>
67-
<releases>
68-
<enabled>false</enabled>
69-
</releases>
70-
<snapshots>
71-
<enabled>true</enabled>
72-
</snapshots>
73-
</repository>
74-
<repository>
75-
<id>ossrh</id>
76-
<name>Sonatype OSS</name>
77-
<url>https://oss.sonatype.org/content/repositories/releases/</url>
78-
<snapshots>
79-
<enabled>false</enabled>
80-
</snapshots>
81-
</repository>
82-
</repositories>
83-
8422
<properties>
8523
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
8624
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -522,5 +460,18 @@
522460
</configuration>
523461
</plugin>
524462
</plugins>
463+
<extensions>
464+
<extension>
465+
<groupId>com.github.seahen</groupId>
466+
<artifactId>maven-s3-wagon</artifactId>
467+
<version>1.3.3</version>
468+
</extension>
469+
</extensions>
525470
</build>
471+
<distributionManagement>
472+
<repository>
473+
<id>maven.baqends.repo</id>
474+
<url>s3://baqends-maven/release</url>
475+
</repository>
476+
</distributionManagement>
526477
</project>

src/main/java/com/spotify/github/v3/checks/CheckRunResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public interface CheckRunResponse extends CheckRunBase {
3636
*
3737
* @return the int
3838
*/
39-
int id();
39+
long id();
4040

4141
/**
4242
* Url string.

0 commit comments

Comments
 (0)