@@ -11,7 +11,7 @@ To utilize the GitLab API for Java in your project, simply add the following dep
11
11
``` java
12
12
dependencies {
13
13
...
14
- compile group: ' org.gitlab4j' , name: ' gitlab4j-api' , version: ' 4.6.9 '
14
+ compile group: ' org.gitlab4j' , name: ' gitlab4j-api' , version: ' 4.7.0 '
15
15
}
16
16
```
17
17
@@ -20,7 +20,7 @@ dependencies {
20
20
<dependency >
21
21
<groupId >org.gitlab4j</groupId >
22
22
<artifactId >gitlab4j-api</artifactId >
23
- <version >4.6.9 </version >
23
+ <version >4.7.0 </version >
24
24
</dependency >
25
25
```
26
26
@@ -101,7 +101,9 @@ Available Sub APIs
101
101
  ;  ; [ GroupApi] ( #groupapi ) <br />
102
102
  ;  ; [ IssuesApi] ( #issuesapi ) <br />
103
103
  ;  ; [ JobApi] ( #jobapi ) <br />
104
+   ;  ; [ LabelsApi] ( #labelsapi ) <br />
104
105
  ;  ; [ MergeRequestApi] ( #mergerequestapi ) <br />
106
+   ;  ; [ MilestonesApi] ( #milestonesapi ) <br />
105
107
  ;  ; [ NamespaceApi] ( #namespaceapi ) <br />
106
108
  ;  ; [ NotesApi] ( #notesapi ) <br />
107
109
  ;  ; [ PipelineApi] ( #pipelineapi ) <br />
@@ -157,11 +159,23 @@ List<Issue> issues = gitLabApi.getIssuesApi().getIssues(1234);
157
159
List<Job > jobs = gitLabApi. getJobApi(). getJobs(1234 );
158
160
```
159
161
162
+ ### LabelsApi
163
+ ``` java
164
+ // Get a list of labels for the specified project ID
165
+ List<Label > labels = gitLabApi. getLabelsApi(). getLabels(1234 );
166
+ ```
167
+
160
168
### MergeRequestApi
161
169
``` java
162
170
// Get a list of the merge requests for the specified project
163
171
List<MergeRequest > mergeRequests = gitLabApi. getMergeRequestApi(). getMergeRequests(1234 );
164
172
```
173
+
174
+ ### MilestonesApi
175
+ ``` java
176
+ // Get a list of the milestones for the specified project
177
+ List<Milestone > milestones = gitLabApi. getMilestonesApi(). getMilestones(1234 );
178
+ ```
165
179
166
180
### NamespaceApi
167
181
``` java
0 commit comments