@@ -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.9.20 '
14+ compile group: ' org.gitlab4j' , name: ' gitlab4j-api' , version: ' 4.9.21 '
1515}
1616```
1717
@@ -22,7 +22,7 @@ dependencies {
2222<dependency >
2323 <groupId >org.gitlab4j</groupId >
2424 <artifactId >gitlab4j-api</artifactId >
25- <version >4.9.20 </version >
25+ <version >4.9.21 </version >
2626</dependency >
2727```
2828
@@ -206,6 +206,7 @@ The API has been broken up into sub API classes to make it easier to learn and t
206206### Available Sub APIs
207207------------------
208208  ;  ; [ AwardEmojiApi] ( #awardemojiapi ) <br />
209+   ;  ; [ BoardsApi] ( #boardsapi ) <br />
209210  ;  ; [ CommitsApi] ( #commitsapi ) <br />
210211  ;  ; [ DeployKeysApi] ( #deploykeysapi ) <br />
211212  ;  ; [ DiscussionsApi] ( #discussionsapi ) <br />
@@ -244,6 +245,12 @@ The API has been broken up into sub API classes to make it easier to learn and t
244245List<AwardEmoji > awardEmojis = gitLabApi. getAwardEmojiApi(). getIssuAwardEmojis(1 , 1 );
245246```
246247
248+ #### BoardsApi
249+ ``` java
250+ // Get a list of the Issue Boards belonging to the specified project
251+ List<Board > boards = gitLabApi. getBoardsApi(). getBoards(projectId);
252+ ```
253+
247254#### CommitsApi
248255``` java
249256// Get a list of commits associated with the specified branch that fall within the specified time window
0 commit comments