@@ -12,7 +12,7 @@ To utilize GitLab4J™ API in your Java project, simply add the following de
12
12
``` java
13
13
dependencies {
14
14
...
15
- compile group: ' org.gitlab4j' , name: ' gitlab4j-api' , version: ' 4.11.6 '
15
+ compile group: ' org.gitlab4j' , name: ' gitlab4j-api' , version: ' 4.11.7 '
16
16
}
17
17
```
18
18
@@ -23,7 +23,7 @@ dependencies {
23
23
<dependency >
24
24
<groupId >org.gitlab4j</groupId >
25
25
<artifactId >gitlab4j-api</artifactId >
26
- <version >4.11.6 </version >
26
+ <version >4.11.7 </version >
27
27
</dependency >
28
28
```
29
29
@@ -231,6 +231,7 @@ The following is a list of the available sub APIs along with a sample use of eac
231
231
  ;  ; [ EventsApi] ( #eventsapi ) <br />
232
232
  ;  ; [ GroupApi] ( #groupapi ) <br />
233
233
  ;  ; [ HealthCheckApi] ( #healthcheckapi ) <br />
234
+   ;  ; [ ImportExportApi] ( #importexportapi ) <br />
234
235
  ;  ; [ IssuesApi] ( #issuesapi ) <br />
235
236
  ;  ; [ JobApi] ( #jobapi ) <br />
236
237
  ;  ; [ LabelsApi] ( #labelsapi ) <br />
@@ -335,6 +336,15 @@ List<Group> groups = gitLabApi.getGroupApi().getGroups();
335
336
HealthCheckInfo healthCheck = gitLabApi. getHealthCheckApi(). getLiveness();
336
337
```
337
338
339
+ #### ImportExportApi
340
+ ``` java
341
+ // Schedule a project export for the specified project ID
342
+ gitLabApi. getImportExportApi(). scheduleExport(projectId);
343
+
344
+ // Get the project export status for the specified project ID
345
+ ExportStatus exportStatus = gitLabApi. getImportExportApi(). getExportStatus(projectId);
346
+ ```
347
+
338
348
#### IssuesApi
339
349
``` java
340
350
// Get a list of issues for the specified project ID
0 commit comments