java-gitlab-api
java-gitlab-api copied to clipboard
A wrapper for the Gitlab API written in Java
hi , the method ,GitlabProject getProject(String namespace, String projectName) rerurn GitlabProject , but GitlabProject.owerId is null,but actual,it is not null 
my gitlab version:8.3.2 un-limit loop get branches for getBranches() root reasean: gitlab api GET /projects/:id/repository/branches does not support pagination pre_page & page parameteres suggest solution: no links from head response,...
In some cases, we need to load only the first or the last page from project's pipelines using a pagination query. (e.g. get the last pipeline from the project)
Hi, As the developer I'd like to get information about closed date of the (closed) issue. As per documentation, Gitlab is returning it within response (https://docs.gitlab.com/ce/api/issues.html#single-issue). The problem is that...
Added support for multiple assignees in the Merge Request object
fixes #348
When I'm using the method below, It will throw java.io.FileNotFoundException. ``` GitlabSession session = GitlabAPI.connect("https://myGitlabURL", "username", "password"); ``` The GitlabAPI is working well, the problem is the session and createUser....
Hey, can you improve pagination management ? I use this api for manage many users and many groups, but each call consume "+1" api call ... For each call, you...
In PR #339 I only included the non-breaking parts of the change proposed in #337. This PR does include them.
Hello, Here is a little contribution to fix the `getProject(String namespace, String projectName)` method, because in the Gitlab API, you can only access a project by its ID. Hence you...