@@ -50,7 +50,7 @@ To utilize GitLab4J™ API in your Java project, simply add the following de
50
50
``` java
51
51
dependencies {
52
52
...
53
- compile group: ' org.gitlab4j' , name: ' gitlab4j-api' , version: ' 4.12.3 '
53
+ compile group: ' org.gitlab4j' , name: ' gitlab4j-api' , version: ' 4.12.4 '
54
54
}
55
55
```
56
56
@@ -61,7 +61,7 @@ dependencies {
61
61
<dependency >
62
62
<groupId >org.gitlab4j</groupId >
63
63
<artifactId >gitlab4j-api</artifactId >
64
- <version >4.12.3 </version >
64
+ <version >4.12.4 </version >
65
65
</dependency >
66
66
```
67
67
@@ -280,6 +280,7 @@ The following is a list of the available sub APIs along with a sample use of eac
280
280
  ;  ; [ RepositoryApi] ( #repositoryapi ) <br />
281
281
  ;  ; [ RepositoryFileApi] ( #repositoryfileapi ) <br />
282
282
  ;  ; [ RunnersApi] ( #runnersapi ) <br />
283
+   ;  ; [ SearchApi] ( #searchapi ) <br />
283
284
  ;  ; [ ServicesApi] ( #servicesapi ) <br />
284
285
  ;  ; [ SessionApi] ( #sessionapi ) <br />
285
286
  ;  ; [ SnippetsApi] ( #snippetsapi ) <br />
@@ -480,6 +481,12 @@ RepositoryFile file = gitLabApi.getRepositoryFileApi().getFile("file-path", 1234
480
481
List<Runner > runners = gitLabApi. getRunnersApi(). getAllRunners();
481
482
```
482
483
484
+ #### SearchApi
485
+ ``` java
486
+ // Do a global search for Projects
487
+ List<?> projects = gitLabApi. getSearchApi(). globalSearch(SearchScope . PROJECTS , " text-to-search-for" );
488
+ ```
489
+
483
490
#### ServicesApi
484
491
``` java
485
492
// Activate/Update the Slack Notifications service
0 commit comments