java-gitlab-api
java-gitlab-api copied to clipboard
A wrapper for the Gitlab API written in Java
Hi, I am running bellow line to create a file in a gitlab repository: `api.createRepositoryFile(project, "file.txt", "master", "commit message", Base64.getEncoder().encodeToString("content for test".getBytes()));`. And I am getting the bellow error: `...
Hi, I would like to know if there is any way to list the projects of a certain user. With GitLab API it would be through this line: `GET /users/:user_id/projects`...
 Sorry, I'm not good at English. "Delete a merge request note" API return space content, but the API "deleteNote" of "java-gitlab-api" expect GitlabNote. 
I'm using this wrapper in combination with a custom Hygieia collector. When requesting all the projects available I get an error. Code snippet where I'm calling the wrapper. ` LOG.info("Retreiving...
1. https://github.com/timols/java-gitlab-api/blob/27eb69ba671be2da8e1a5fe75fac6be2bf035e4c/src/main/java/org/gitlab/api/Pagination.java#L15 this calls "append", so if you call setPage twice, you'll get ?page=4&page=5. If one is lucky, gitlab would choose the latter of these, but I have no idea...
I use a httpclient to get the result from /api/v4/projects?search=projectname, get a list of 39 project, but when i use this searchProjects to get project list, i get only 20...
When import a project,I can not get the result of Importing . I want to do something when importing project successfully .How to do it ?
Against the current GitLab.com api, https://github.com/timols/java-gitlab-api/blob/master/src/main/java/org/gitlab/api/GitlabAPI.java#L851 seems to just return everything on Gitlab. Experimenting, it seems like there's a typo with `owner` needing to be replaced with `owned` See also...
Following attributes are missing in GitlabIssue class: - assignees - user_notes_count - upvotes - downvotes - due_date - confidential - discussion_locked - time_stats - closed_at - web_url
The maven build is not running with java 9.