Skip to content

Commit

Permalink
update version to 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eriwen committed Feb 9, 2013
1 parent 83c8598 commit 7c66bdb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ targetCompatibility = '1.6'

defaultTasks 'clean', 'build'

version = '1.3.2'
version = '1.4.0'
group = 'com.eriwen'
ext.archivesBaseName = 'gradle-js-plugin'
ext.isSnapshot = version.endsWith("-SNAPSHOT")
Expand Down Expand Up @@ -61,7 +61,7 @@ task groovydocJar(type: Jar) {
}

task wrapper(type: Wrapper) {
gradleVersion = '1.3'
gradleVersion = '1.4'
}

artifacts {
Expand Down
4 changes: 3 additions & 1 deletion plugin.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.eriwen:gradle-js-plugin:1.3.2'
classpath 'com.eriwen:gradle-js-plugin:1.4.0'
}
}
buildscript {
Expand Down Expand Up @@ -69,6 +69,8 @@ task gzip(type: com.eriwen.gradle.js.tasks.GzipJsTask) {
task jshintz(type: com.eriwen.gradle.js.tasks.JsHintTask) {
source = javascript.source.custom.js.files
dest = "${buildDir}/jshint.out"
ignoreExitCode = true
jshint.options = [expr: "false", unused: "true"]
}

task jsdocz(type: com.eriwen.gradle.js.tasks.JsDocTask) {
Expand Down

0 comments on commit 7c66bdb

Please sign in to comment.