Skip to content

Commit 12ea04c

Browse files
committed
Version bump to 1.1.1
1 parent a708c04 commit 12ea04c

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
mavenCentral()
1010
}
1111
dependencies {
12-
classpath 'com.eriwen:gradle-css-plugin:1.1'
12+
classpath 'com.eriwen:gradle-css-plugin:1.1.1'
1313
}
1414
}
1515

build.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apply plugin: 'idea'
55

66
defaultTasks 'clean', 'build'
77

8-
version = '1.2'
8+
version = '1.1.1'
99
group = 'com.eriwen'
1010
ext.artifact = 'gradle-css-plugin'
1111
ext.isSnapshot = version.endsWith("-SNAPSHOT")
@@ -21,6 +21,7 @@ dependencies {
2121
exclude module: 'junit'
2222
}
2323
compile 'org.jruby:jruby-complete:1.6.7.2'
24+
//runtime 'me.n4u.sass:sass-gems:3.1.16'
2425
testCompile ('org.spockframework:spock-core:0.6-groovy-1.8') {
2526
exclude module: "junit-dep"
2627
exclude module: "groovy-all"

src/main/groovy/com/eriwen/gradle/css/CssPlugin.groovy

+6-6
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ class CssPlugin implements Plugin<Project> {
3131
}
3232

3333
void applyTasks(final Project project) {
34-
// TODO: Add descriptions etc.
35-
project.task('minifyCss', type: MinifyCssTask) {}
36-
project.task('combineCss', type: CombineCssTask) {}
37-
project.task('gzipCss', type: GzipCssTask) {}
38-
project.task('csslint', type: CssLintTask) {}
34+
project.task('minifyCss', type: MinifyCssTask, group: 'Build', description: 'Combine many CSS files into one') {}
35+
project.task('combineCss', type: CombineCssTask, group: 'Build', description: 'Minify CSS using YUI Minifier') {}
36+
project.task('gzipCss', type: GzipCssTask, group: 'Build', description: 'GZip a given CSS file') {}
37+
project.task('csslint', type: CssLintTask, group: 'Verification', description: 'Analyze CSS sources with CSS Lint') {}
38+
// project.task('sass', type: CompileSassTask) {}
3939
// project.task('kss', type: KssTask) {}
4040
}
4141

@@ -47,7 +47,7 @@ class CssPlugin implements Plugin<Project> {
4747
mavenCentral()
4848
}
4949
project.dependencies {
50-
rhino 'org.mozilla:rhino:1.7R3'
50+
rhino 'org.mozilla:rhino:1.7R4'
5151
}
5252
}
5353
}

0 commit comments

Comments
 (0)