java-gitlab-api icon indicating copy to clipboard operation
java-gitlab-api copied to clipboard

A wrapper for the Gitlab API written in Java

Results 69 java-gitlab-api issues
Sort by recently updated
recently updated
newest added

both methods to acces Notes from a GitlabIssue are ctearing an incorrect URL string. The issue is identified by the ID but should be accessed with IID due to API...

Hello, Is there a way to pull comments on the changed files that are part of a given merge branch? Thanks Enroll

(Applies to v1.2.8 and current GitLab.com, 10.2.2). Calling GitlabAPI.getGroups() when the instance of GitlabAPI was created with a token with insufficient scope (e.g. read_user) throws a java.lang.Error. Calling code needs...

Hello, is there any possibilty to set a Gitlab Release note a known tag? Officialy this feature is supported, but does the Java GitlabAPI provide such a feature? See https://docs.gitlab.com/ce/api/tags.html#update-a-release...

Paging is not working on the /groups/:id/members endpoint, it returns the whole result set in every request. https://gitlab.com/gitlab-org/gitlab-ce/issues/1746 So it results in an infinite loop of page=i+1 requests.

Is there a way for GitlabProject model to have getJson() method that would return the project json? It would be great if it's the original raw JSON that was retrieved,...

Hi, I need to get a list of the projects from gitlab and exclude any "forks". This was working for a while ... but it seems to an invalid test...

Is there a way to access API response headers, in particular rate limit ones? I tried even to derive from `GitlabHTTPRequestor` to patch http response processing, but everything that deals...

I tried to use this project with mine but it starts giving a lot of errors of fasterxml missing, ObjectMapper, etc... Any idea where to get everything and why this...

The code I used: ``` GitlabAPI api = GitlabAPI.connect(getRepositoryURI(), token); api.deleteUser(id); ``` The next error occurs: ``` Caused by: com.fasterxml.jackson.databind.JsonMappingException: No content to map due to end-of-input at [Source: ;...