Is it possible to use cucumber with gradle buildship in Eclipse? -
i'm trying compile "hello world" cucumber application using gradle buildship in eclipse. when try run (choosing 'build') in eclipse, following error:
launching gradle tasks failed due error connecting gradle build. not execute build using gradle distribution https://services.gradle.org/distributions/gradle-3.5-bin.zip build operations have not been marked completed
i can build using command line using same configuration:
:compilejava :processresources no-source :classes :jar :assemble :compiletestjava :processtestresources :testclasses :test skeleton.runcukestest standard_out ...waiting... ...growling... 1 scenarios (1 passed) 3 steps (3 passed) 0m0.085s :check :build build successful total time: 3.19 secs
and here version info command line:
c:\users\whalen\documents\ws\workspace\cucumber-hello-world>gradlew -version
------------------------------------------------------------ gradle 3.5 ------------------------------------------------------------ build time: 2017-04-10 13:37:25 utc revision: b762622a185d59ce0cfc9cbc6ab5dd22469e18a6 groovy: 2.4.10 ant: apache ant(tm) version 1.9.6 compiled on june 29 2015 jvm: 1.8.0_131 (oracle corporation 25.131-b11) os: windows 10 10.0 amd64
any ideas on might preventing build succeeding on gradle buildship appreciated!
Comments
Post a Comment