gitlab4j-api
gitlab4j-api copied to clipboard
GitLab4J API (gitlab4j-api) provides a full featured Java client library for working with GitLab repositories via the GitLab REST API
Gitlab has now added the ability to CRUD project access tokens: https://docs.gitlab.com/13.10/ee/api/resource_access_tokens.html The ability to create and interact with project access tokens would be a powerful addition to the current...
When I start to maintain this project, I faced few problems between to use it with some of GitLab versions. I'm not the only one. See https://github.com/gitlab4j/gitlab4j-api/issues/682#issuecomment-819466002, #658, #681 From...
GitLab instance in question is running GitLab version 13.2 When I try to create a new discussion using this block of code: ```java Date createdAt = Date.from(Instant.now()); Discussion mergeRequestDiscussion =...
Add support for Personal Access Token creation (#653)
This is part of a set of PRs with the purpose of fixing broken tests for the latest version of GitLab (13.10.2 at time of writing) and so setting the...
This is part of a set of PRs with the purpose of fixing broken tests for the latest version of GitLab (13.10.2 at time of writing) and so setting the...
This is part of a set of PRs with the purpose of fixing broken tests for the latest version of GitLab (13.10.2 at time of writing) and so setting the...
Hello I have just tried to access my gitlab account using the **gitlab4j**: `GitLabApi gitLabApi = GitLabApi.oauth2Login("https://gitlab.com", username, password);` and i have received the following error: org.gitlab4j.api.GitLabApiException: java.net.UnknownHostException: gitlab.com Could...
Gitlab Oauth login with username and password is not working as Gitlab API for username and password is updated to must-have client ID and secret as well. Existing implementation for...
Hello, I find an acceptMergeRequest error,it's likely a bug. [Gitlab API Document v3 to v4 ](https://docs.gitlab.com/ee/api/v3_to_v4.html):Endpoints under GET /projects/merge_request/:id have been removed (use: GET /projects/merge_requests/:id) but in gitlab4j-api:4.15.7, MergeRequestApi.java:793 ,when...