File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ To utilize the GitLab API for Java in your project, simply add the following dep
1111``` java
1212dependencies {
1313 ...
14- compile group: ' org.gitlab4j' , name: ' gitlab4j-api' , version: ' 4.8.5 '
14+ compile group: ' org.gitlab4j' , name: ' gitlab4j-api' , version: ' 4.8.7 '
1515}
1616```
1717
@@ -20,7 +20,7 @@ dependencies {
2020<dependency >
2121 <groupId >org.gitlab4j</groupId >
2222 <artifactId >gitlab4j-api</artifactId >
23- <version >4.8.5 </version >
23+ <version >4.8.7 </version >
2424</dependency >
2525```
2626
@@ -209,7 +209,7 @@ List<Job> jobs = gitLabApi.getJobApi().getJobs(1234);
209209List<Label > labels = gitLabApi. getLabelsApi(). getLabels(1234 );
210210```
211211
212- ### MergeRequestApi
212+ #### MergeRequestApi
213213``` java
214214// Get a list of the merge requests for the specified project
215215List<MergeRequest > mergeRequests = gitLabApi. getMergeRequestApi(). getMergeRequests(1234 );
@@ -283,7 +283,7 @@ RepositoryFile file = gitLabApi.getRepositoryFileApi().getFile("file-path", 1234
283283#### RunnersApi
284284``` java
285285// Get All Runners.
286- List<Runner > runners = api . getRunnersApi(). getAllRunners();
286+ List<Runner > runners = gitLabApi . getRunnersApi(). getAllRunners();
287287```
288288
289289#### ServicesApi
You can’t perform that action at this time.
0 commit comments