Skip to content
This repository has been archived by the owner on May 21, 2022. It is now read-only.

Commit

Permalink
v1.2.2: preserve relative paths, defaults for srcDir and outDir
Browse files Browse the repository at this point in the history
  • Loading branch information
kravemir committed Sep 5, 2016
1 parent 301d3ce commit cba1e05
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ About
Main features (besides SASS compilation):

* multiple build configurations support
* preserve relative paths
* various options, [see](#configuration)
* ... something missing? raise an issue for feature request :-) ...

Expand All @@ -33,7 +34,7 @@ buildscript {
}
}
dependencies {
classpath "gradle.plugin.org.kravemir.gradle.sass:GradleSassPlugin:1.2.1"
classpath "gradle.plugin.org.kravemir.gradle.sass:GradleSassPlugin:1.2.2"
}
}
Expand All @@ -42,7 +43,7 @@ apply plugin: "org.kravemir.gradle.sass"
Or with new the plugin mechanism:
```gradle
plugins {
id "org.kravemir.gradle.sass" version "1.2.1"
id "org.kravemir.gradle.sass" version "1.2.2"
}
```

Expand Down
3 changes: 1 addition & 2 deletions examples/01-HelloSass/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ buildscript {
}
}
dependencies {
classpath "org.kravemir.gradle.sass:GradleSassPlugin:1.2.2-SNAPSHOT1"
//classpath "gradle.plugin.org.kravemir.gradle.sass:GradleSassPlugin:1.2.2"
classpath "gradle.plugin.org.kravemir.gradle.sass:GradleSassPlugin:1.2.2"
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/02-MultipleBuilds/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}
}
dependencies {
classpath "gradle.plugin.org.kravemir.gradle.sass:GradleSassPlugin:1.2"
classpath "gradle.plugin.org.kravemir.gradle.sass:GradleSassPlugin:1.2.2"
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/03-JavaResources/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}
}
dependencies {
classpath "gradle.plugin.org.kravemir.gradle.sass:GradleSassPlugin:1.2.1"
classpath "gradle.plugin.org.kravemir.gradle.sass:GradleSassPlugin:1.2.2"
}
}

Expand Down
2 changes: 1 addition & 1 deletion plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ apply plugin: 'java'
apply plugin: 'maven'

group 'org.kravemir.gradle.sass'
version '1.2.2-SNAPSHOT1'
version '1.2.2'

sourceCompatibility = 1.8

Expand Down

0 comments on commit cba1e05

Please sign in to comment.