From 68a1e0d617e85a1a3f168cc4b1df4efb6e9de2a3 Mon Sep 17 00:00:00 2001 From: Benjamin Sousa <benjamin.sousa@wisc.edu> Date: Wed, 26 Jul 2017 15:08:20 -0500 Subject: [PATCH] Add placeholder for project version in README, so that copy/paste doesn't leave an old version of the dependency in the parent project's build --- README.md | 4 +++- build.gradle | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 74fb05a..683ee18 100644 --- a/README.md +++ b/README.md @@ -18,11 +18,13 @@ buildscript { } } dependencies { - classpath 'edu.wisc.doit.gradle:continuous-publish-plugin:0.1.0' + classpath 'edu.wisc.doit.gradle:continuous-publish-plugin:<current_version>' } } ``` +Replace *<current_version>* with the current version of this project. + Note the `codeDoitUsername` and `codeDoitPassword` properties. This project is distributed via the [Shared Tools Maven Artifact Repository](https://wiki.doit.wisc.edu/confluence/display/ST/Maven+Repository+Manager), diff --git a/build.gradle b/build.gradle index eeecbb1..3f2673c 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ group 'edu.wisc.doit.gradle' -version '0.2.2' +version '0.2.3' apply plugin: 'groovy' apply plugin: 'idea' -- GitLab