Skip to content

Commit

Permalink
Release v0.2.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
outofcoffee committed Nov 29, 2017
1 parent 1a262dd commit 5f9114a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
## [0.2.4] - 2017-11-29
### Added
- Adds the ability to wait for the server to start before attempting to run commands.
- Improvements to internal code structure.
Expand Down
10 changes: 7 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

group 'io.apiman.cli'
version '0.2.4-SNAPSHOT'
version '0.2.4'

buildscript {
repositories {
Expand All @@ -25,12 +25,12 @@ buildscript {
}
}
dependencies {
classpath "com.github.jengelman.gradle.plugins:shadow:1.2.3"
classpath "com.github.jengelman.gradle.plugins:shadow:2.0.1"
}
}

apply plugin: 'java'
apply plugin: "com.github.johnrengelman.shadow"
apply plugin: 'com.github.johnrengelman.shadow'

repositories {
mavenCentral()
Expand Down Expand Up @@ -104,3 +104,7 @@ test {
systemProperty "apiman.host", project.properties.get("apiman.host")
systemProperty "apiman.port", project.properties.get("apiman.port")
}

task wrapper(type: Wrapper) {
gradleVersion = "4.3.1"
}

0 comments on commit 5f9114a

Please sign in to comment.