Skip to content

Commit

Permalink
Updated hazelcast to 3.7.3, use doLast
Browse files Browse the repository at this point in the history
  • Loading branch information
jonesde committed Nov 24, 2016
1 parent a8632e8 commit c57c30a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies {
compile project(':framework')

// use hazelcast-all so various options are available, not that at least hazelcast-wm is needed for web listener
compile 'com.hazelcast:hazelcast-all:3.7.2' // Apache 2.0
compile 'com.hazelcast:hazelcast-all:3.7.3' // Apache 2.0
}

// by default the Java plugin runs test on build, change to not do that (only run test if explicit task)
Expand All @@ -47,9 +47,9 @@ jar {
destinationDir = file(projectDir.absolutePath + '/lib')
baseName = jarBaseName
}
task copyDependencies << {
task copyDependencies { doLast {
copy { from (configurations.runtime - project(':framework').configurations.runtime - project(':framework').jar.archivePath)
into file(projectDir.absolutePath + '/lib') }
}
} }
copyDependencies.dependsOn cleanLib
jar.dependsOn copyDependencies

0 comments on commit c57c30a

Please sign in to comment.