Skip to content

Commit

Permalink
Fixed build task dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
timyates committed Aug 7, 2012
1 parent 47fe4af commit 43cb460
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ task prepareVertxModule( type:Copy, dependsOn: 'classes' ) {
}

// Package into build/libs/mod.zip
task dist( type: Zip, dependsOn: 'copyMod' ) {
task dist( type: Zip, dependsOn: 'prepareVertxModule' ) {
group = 'vert.x'
description = "Assembles a vert.x module in 'mod.zip' format"
destinationDir = project.file('build/libs')
Expand Down

0 comments on commit 43cb460

Please sign in to comment.