Skip to content

Commit

Permalink
Deprecated '<<'
Browse files Browse the repository at this point in the history
  • Loading branch information
ar committed Nov 26, 2016
1 parent badb103 commit ba74809
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions jpos-app.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,10 @@ task installResources(dependsOn: 'classes', type: JavaExec) {
args = ["--outputDir=src/dist"]
}

task viewTests (description: 'Open Test Reports') << {
Class.forName("java.awt.Desktop").newInstance().browse(
new File("${buildDir}/reports/tests", 'index.html').toURI())
task viewTests (description: 'Open Test Reports') {
doLast {
Class.forName("java.awt.Desktop").newInstance().browse(
new File("${buildDir}/reports/tests", 'index.html').toURI())
}
}

0 comments on commit ba74809

Please # to comment.