From 5ff6c90d16a97687561bf88e9cfc3d16bf701aa6 Mon Sep 17 00:00:00 2001 From: Tony Trinh Date: Wed, 7 Feb 2018 21:06:42 -0600 Subject: [PATCH] Update readme.gradle --- README.md | 6 +++--- build.gradle | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c05b3d8..e877f6e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -

logback-extensions

-v0.1.4 +# logback-extensions [![CircleCI branch](https://img.shields.io/circleci/project/qos-ch/logback-extensions/master.svg)](https://circleci.com/gh/https://circleci.com/gh/qos-ch/logback-extensions) +v0.1.5 https://github.com/qos-ch/logback-extensions/wiki @@ -7,7 +7,7 @@ https://github.com/qos-ch/logback-extensions/wiki Run the following command to build: ``` -mvn clean install +./gradlew clean assemble ``` #### License diff --git a/build.gradle b/build.gradle index 966eab5..9b0b9e7 100644 --- a/build.gradle +++ b/build.gradle @@ -5,6 +5,7 @@ buildscript { } dependencies { // classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3' + classpath 'org.ajoberstar:grgit:2.1.0' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files @@ -14,6 +15,8 @@ plugins { id 'io.codearte.nexus-staging' version '0.11.0' // must be in root project id 'net.researchgate.release' version '2.6.0' } +apply plugin: 'org.ajoberstar.grgit' +apply from: 'gradle/readme.gradle' allprojects { apply plugin: 'maven' @@ -25,7 +28,6 @@ allprojects { subprojects { apply plugin: 'java' apply from: "${rootProject.rootDir}/gradle/deploy.gradle" - apply from: "${rootProject.rootDir}/gradle/readme.gradle" sourceCompatibility = 1.6 targetCompatibility = 1.6