Skip to content

Commit

Permalink
Version 1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuerstenau committed Jul 25, 2016
1 parent 89186a6 commit 69a444c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
@@ -1,4 +1,4 @@
[![License](https://img.shields.io/badge/license-MIT-blue.svg) ](https://github.com/mfuerstenau/gradle-buildconfig-plugin/blob/1.1.5-SNAPSHOT/LICENSE)
[![License](https://img.shields.io/badge/license-MIT-blue.svg) ](https://github.com/mfuerstenau/gradle-buildconfig-plugin/LICENSE)
[![Build Status](https://travis-ci.org/mfuerstenau/gradle-buildconfig-plugin.svg?branch=master)](https://travis-ci.org/mfuerstenau/gradle-buildconfig-plugin)
[![Download](https://api.bintray.com/packages/mfuerstenau/maven/gradle-buildconfig-plugin/images/download.svg) ](https://bintray.com/mfuerstenau/maven/gradle-buildconfig-plugin/_latestVersion)

Expand All @@ -10,7 +10,7 @@ How to add as buildscript dependency .
### Easy (Gradle 2.1+)
```gradle
plugins {
id 'de.fuerstenau.buildconfig' version '1.1.5'
id 'de.fuerstenau.buildconfig' version '1.1.6'
}
```
### Classic (Gradle prior to 2.1)
Expand All @@ -23,7 +23,7 @@ buildscript {
}
}
dependencies {
classpath group: 'gradle.plugin.de.fuerstenau:BuildConfigPlugin:1.1.5'
classpath group: 'gradle.plugin.de.fuerstenau:BuildConfigPlugin:1.1.6'
}
apply plugin: 'de.fuerstenau.buildconfig' // actually applies the plugin
```
Expand All @@ -32,7 +32,7 @@ You can download the ```.jar```-file from the button at the top and use as file
```gradle
buildscript {
dependencies {
classpath files ("${projectDir}/lib/BuildConfig-1.1.5-SNAPSHOT.jar") // insert the path to .jar-file
classpath files ("${projectDir}/lib/BuildConfig-1.1.6-SNAPSHOT.jar") // insert the path to .jar-file
}
apply plugin: 'de.fuerstenau.buildconfig'
```
Expand Down Expand Up @@ -150,7 +150,7 @@ repositories {
}
}
dependencies {
classpath group: 'gradle.plugin.de.fuerstenau:BuildConfigPlugin:1.1.5'
classpath group: 'gradle.plugin.de.fuerstenau:BuildConfigPlugin:1.1.6'
}
plugins {
id 'java'
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -14,7 +14,7 @@ if (!hasProperty('mainClass')) {
}

group = 'de.fuerstenau'
version = '1.1.5'
version = '1.1.6'

repositories {
mavenCentral()
Expand Down

0 comments on commit 69a444c

Please sign in to comment.