Skip to content

Commit d4cef4a

Browse files
committed
Updated for release 4.7.14 (#117).
1 parent 3926451 commit d4cef4a

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To utilize the GitLab API for Java in your project, simply add the following dep
1111
```java
1212
dependencies {
1313
...
14-
compile group: 'org.gitlab4j', name: 'gitlab4j-api', version: '4.7.12'
14+
compile group: 'org.gitlab4j', name: 'gitlab4j-api', version: '4.7.14'
1515
}
1616
```
1717

@@ -20,7 +20,7 @@ dependencies {
2020
<dependency>
2121
<groupId>org.gitlab4j</groupId>
2222
<artifactId>gitlab4j-api</artifactId>
23-
<version>4.7.12</version>
23+
<version>4.7.14</version>
2424
</dependency>
2525
```
2626

@@ -133,6 +133,7 @@ The API has been broken up into sub APIs classes to make it easier to learn and
133133
&nbsp;&nbsp;[RepositoryFileApi](#repositoryfileapi)<br/>
134134
&nbsp;&nbsp;[ServicesApi](#servicesapi)<br/>
135135
&nbsp;&nbsp;[SessionApi](#sessionapi)<br/>
136+
&nbsp;&nbsp;[SystemHooksApi](#systemhooksapi)<br/>
136137
&nbsp;&nbsp;[UserApi](#userapi)
137138

138139

@@ -259,6 +260,12 @@ getLabApi.getServicesApi().setGitLabCI("project-name", "auth-token", "project-ci
259260
getLabApi.getSessionApi().login("your-username", "your-email", "your-password");
260261
```
261262

263+
#### SystemHooksApi
264+
```java
265+
// Get a list of installed system hooks
266+
List<SystemHook> hooks = gitLabApi.getSystemHooksApi().getSystemHooks();
267+
```
268+
262269
#### UserApi
263270
```java
264271
// Get the User info for user_id 1

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>org.gitlab4j</groupId>
66
<artifactId>gitlab4j-api</artifactId>
77
<packaging>jar</packaging>
8-
<version>4.7.13-SNAPSHOT</version>
8+
<version>4.7.14-SNAPSHOT</version>
99
<name>GitLab API Java Client</name>
1010
<description>GitLab API for Java (gitlab4j-api) provides a full featured Java API for working with GitLab repositories via the GitLab REST API.</description>
1111
<url>https://github.com/gmessner/gitlab4j-api</url>

0 commit comments

Comments
 (0)