From 62f4e18559044c94f62328be2858737a8855bb22 Mon Sep 17 00:00:00 2001 From: Greg Messner Date: Sat, 27 Jan 2018 18:34:46 -0800 Subject: [PATCH] Mods for Java 8 (#127). --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 840fac78..3bfbbfd7 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,12 @@ GitlLab API for Java (gitlab4j-api) =================================== -GitLab API for Java (gitlab4j-api) provides a full featured and easy to consume Java API for working with GitLab repositories via the GitLab REST API. Additionally, full support for working with GitLab WebHooks is also provided. +GitLab API for Java (gitlab4j-api) provides a full featured and easy to consume Java API for working with GitLab repositories via the GitLab REST API. Additionally, full support for working with GitLab webhooks and system hooks is also provided. + +--- + +## Java 8 Requirement +As of GitLab4J-API 4.8.0 Java 8+ is now required to use GitLab4J-API. --- @@ -11,7 +16,7 @@ To utilize the GitLab API for Java in your project, simply add the following dep ```java dependencies { ... - compile group: 'org.gitlab4j', name: 'gitlab4j-api', version: '4.7.17' + compile group: 'org.gitlab4j', name: 'gitlab4j-api', version: '4.8.0' } ``` @@ -20,7 +25,7 @@ dependencies { org.gitlab4j gitlab4j-api - 4.7.17 + 4.8.07 ``` -- GitLab