Commit d4cef4aa authored by Greg Messner's avatar Greg Messner
Browse files

Updated for release 4.7.14 (#117).

parent 3926451a
...@@ -11,7 +11,7 @@ To utilize the GitLab API for Java in your project, simply add the following dep ...@@ -11,7 +11,7 @@ To utilize the GitLab API for Java in your project, simply add the following dep
```java ```java
dependencies { dependencies {
... ...
compile group: 'org.gitlab4j', name: 'gitlab4j-api', version: '4.7.12' compile group: 'org.gitlab4j', name: 'gitlab4j-api', version: '4.7.14'
} }
``` ```
...@@ -20,7 +20,7 @@ dependencies { ...@@ -20,7 +20,7 @@ dependencies {
<dependency> <dependency>
<groupId>org.gitlab4j</groupId> <groupId>org.gitlab4j</groupId>
<artifactId>gitlab4j-api</artifactId> <artifactId>gitlab4j-api</artifactId>
<version>4.7.12</version> <version>4.7.14</version>
</dependency> </dependency>
``` ```
...@@ -133,6 +133,7 @@ The API has been broken up into sub APIs classes to make it easier to learn and ...@@ -133,6 +133,7 @@ The API has been broken up into sub APIs classes to make it easier to learn and
&nbsp;&nbsp;[RepositoryFileApi](#repositoryfileapi)<br/> &nbsp;&nbsp;[RepositoryFileApi](#repositoryfileapi)<br/>
&nbsp;&nbsp;[ServicesApi](#servicesapi)<br/> &nbsp;&nbsp;[ServicesApi](#servicesapi)<br/>
&nbsp;&nbsp;[SessionApi](#sessionapi)<br/> &nbsp;&nbsp;[SessionApi](#sessionapi)<br/>
&nbsp;&nbsp;[SystemHooksApi](#systemhooksapi)<br/>
&nbsp;&nbsp;[UserApi](#userapi) &nbsp;&nbsp;[UserApi](#userapi)
...@@ -259,6 +260,12 @@ getLabApi.getServicesApi().setGitLabCI("project-name", "auth-token", "project-ci ...@@ -259,6 +260,12 @@ getLabApi.getServicesApi().setGitLabCI("project-name", "auth-token", "project-ci
getLabApi.getSessionApi().login("your-username", "your-email", "your-password"); getLabApi.getSessionApi().login("your-username", "your-email", "your-password");
``` ```
#### SystemHooksApi
```java
// Get a list of installed system hooks
List<SystemHook> hooks = gitLabApi.getSystemHooksApi().getSystemHooks();
```
#### UserApi #### UserApi
```java ```java
// Get the User info for user_id 1 // Get the User info for user_id 1
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<groupId>org.gitlab4j</groupId> <groupId>org.gitlab4j</groupId>
<artifactId>gitlab4j-api</artifactId> <artifactId>gitlab4j-api</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>4.7.13-SNAPSHOT</version> <version>4.7.14-SNAPSHOT</version>
<name>GitLab API Java Client</name> <name>GitLab API Java Client</name>
<description>GitLab API for Java (gitlab4j-api) provides a full featured Java API for working with GitLab repositories via the GitLab REST API.</description> <description>GitLab API for Java (gitlab4j-api) provides a full featured Java API for working with GitLab repositories via the GitLab REST API.</description>
<url>https://github.com/gmessner/gitlab4j-api</url> <url>https://github.com/gmessner/gitlab4j-api</url>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment