Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
restore-keys: |
maven-
- run: mvn install -Pjacoco
- uses: codecov/codecov-action@v4.0.0-beta.3
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./target/site/jacoco/jacoco.xml
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2013-2023, jcabi.com
Copyright (c) 2013-2024, jcabi.com
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion examples/search-repos/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<!--
Copyright (c) 2013-2023, jcabi.com
Copyright (c) 2013-2024, jcabi.com
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion examples/search-repos/src/main/java/com/jcabi/Main.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<!--
Copyright (c) 2013-2023, jcabi.com
Copyright (c) 2013-2024, jcabi.com
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -114,12 +114,12 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>32.1.3-jre</version>
<version>33.0.0-jre</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>20040616</version>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>4.4</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -137,13 +137,13 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.10</version>
<version>0.10.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.9.20.1</version>
<version>1.9.21</version>
<scope>runtime</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -185,7 +185,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-client</artifactId>
<version>1.12</version>
<version>1.19.4</version>
<scope>runtime</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/it/basic-usage/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<!--
Copyright (c) 2013-2023, jcabi.com
Copyright (c) 2013-2024, jcabi.com
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/it/basic-usage/src/main/java/com/jcabi/foo/Sample.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -35,14 +35,14 @@
import com.jcabi.github.RtGithub;
import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
import org.junit.Test;
import org.junit.jupiter.api.Test;

/**
* Sample test.
* @author Yegor Bugayenko (yegor256@gmail.com)
* @version $Id$
*/
public final class SampleTest {
final class SampleTest {

/**
* Fetches labels from Github.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/it/basic-usage/src/test/resources/log4j.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2013-2023, jcabi.com
# Copyright (c) 2013-2024, jcabi.com
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/it/fat-jar/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<!--
Copyright (c) 2013-2023, jcabi.com
Copyright (c) 2013-2024, jcabi.com
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/it/settings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<!--
Copyright (c) 2013-2023, jcabi.com
Copyright (c) 2013-2024, jcabi.com
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Assignees.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
3 changes: 1 addition & 2 deletions src/main/java/com/jcabi/github/Blob.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -42,7 +42,6 @@
* @author Alexander Lukashevich (sanai56967@gmail.com)
* @version $Id$
* @see <a href="https://developer.github.com/v3/git/blobs/">Blobs API</a>
* @checkstyle MultipleStringLiterals (500 lines)
*/
@Immutable
public interface Blob extends JsonReadable {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Blobs.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Branch.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Branches.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Bulk.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Check.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Checks.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Collaborators.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Comment.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Comments.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Commit.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Commits.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/CommitsComparison.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Content.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
3 changes: 1 addition & 2 deletions src/main/java/com/jcabi/github/Contents.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -40,7 +40,6 @@
* @version $Id$
* @since 0.8
* @see <a href="https://developer.github.com/v3/repos/contents/">Contents API</a>
* @checkstyle MultipleStringLiteralsCheck (500 lines)
*/
@Immutable
@SuppressWarnings("PMD.AvoidDuplicateLiterals")
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Coordinates.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/DeployKey.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/DeployKeys.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Event.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Existence.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/FileChange.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Fork.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Forks.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/FromProperties.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Gist.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/GistComment.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/GistComments.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Gists.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/Git.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/github/GitHubThread.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2013-2023, jcabi.com
* Copyright (c) 2013-2024, jcabi.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down
Loading