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

Assignees and reviewers are introduced to GitLab open API. This will allow users to get a GitlabMergeRequest with `assignees `and `reviewers` information.

Bumps commons-io from 2.4 to 2.7. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=commons-io:commons-io&package-manager=maven&previous-version=2.4&new-version=2.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

## Issue description: There are multiple versions of **_com.fasterxml.jackson.core:jackson-core_** in **_java-gitlab-api_**. As shown in the following dependency tree, according to Maven's "nearest wins" strategy, only **_com.fasterxml.jackson.core:jackson-core:2.5.3_** can be loaded, **com.fasterxml.jackson.core:jackson-core:2.5.1_**...

When I am ready to use “getBranches”,my program falls into endless loop. My apiNamespace is "/api/v3". ``` GitlabAPI gitlabAPI = GitlabAPI.connect(hostUrl,apiToken, TokenType.PRIVATE_TOKEN, AuthMethod.HEADER, "/api/v3"); ``` Here are the “getBranches” details...

I want to create a commit to update multiple files. I just find updateRepositoryFile(), but it just update one file in one commit. So I want ask this java api...

/session endpoint was removed in GitLab 10.2+ so i add oauth2 login method ```java GitlabAPI api = GitlabAPI.oauth2Login("http://localhost", "username", "password"); ```

Bumps [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...

dependencies

Add method to find out a group is exist or not

editProjectHook call REST with PUT method. But parameters of hook are set as query parameters of request. That's not work. In GitLab 12.9.1-ee hook parameters must be passed as body...