Skip to content

Commit

Permalink
* version 1.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuerstenau committed Feb 5, 2017
1 parent 685ac4d commit 5df4ced
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Expand Up @@ -11,7 +11,7 @@ There are many ways to include the dependency.
### Easy (Gradle 2.1+)
```gradle
plugins {
id 'de.fuerstenau.buildconfig' version '1.1.8-SNAPSHOT'
id 'de.fuerstenau.buildconfig' version '1.1.8'
}
```
### Classic (Gradle prior to 2.1)
Expand All @@ -24,7 +24,7 @@ buildscript {
}
}
dependencies {
classpath 'gradle.plugin.de.fuerstenau:BuildConfigPlugin:1.1.8-SNAPSHOT'
classpath 'gradle.plugin.de.fuerstenau:BuildConfigPlugin:1.1.8'
}
}
apply plugin: 'de.fuerstenau.buildconfig' // actually applies the plugin
Expand All @@ -34,7 +34,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.8-SNAPSHOT-SNAPSHOT.jar") // insert the path to .jar-file
classpath files ("${projectDir}/lib/BuildConfig-1.1.8-SNAPSHOT.jar") // insert the path to .jar-file
}
}
apply plugin: 'de.fuerstenau.buildconfig'
Expand Down Expand Up @@ -202,7 +202,7 @@ buildscript {
}
}
dependencies {
classpath 'gradle.plugin.de.fuerstenau:BuildConfigPlugin:1.1.8-SNAPSHOT'
classpath 'gradle.plugin.de.fuerstenau:BuildConfigPlugin:1.1.8'
}
}
plugins {
Expand All @@ -215,7 +215,7 @@ Since Gradle 3.0 there is a new option to resolve a plugin and make it available
```gradle
plugins {
id 'java'
id 'de.fuerstenau.buildconfig' version '1.1.8-SNAPSHOT' apply false
id 'de.fuerstenau.buildconfig' version '1.1.8' apply false
}
```
**Note:** The apply false at the end of the plugin declaration.
Expand Down Expand Up @@ -268,7 +268,7 @@ buildscript {
}
}
dependencies {
classpath 'gradle.plugin.de.fuerstenau:BuildConfigPlugin:1.1.8-SNAPSHOT'
classpath 'gradle.plugin.de.fuerstenau:BuildConfigPlugin:1.1.8'
}
}
apply plugin: 'de.fuerstenau.buildconfig' // actually applies the plugin
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.8-SNAPSHOT'
version = '1.1.8'

repositories {
mavenCentral()
Expand Down

0 comments on commit 5df4ced

Please sign in to comment.