Hi I want to run a few test made with cucumber on a gradle project, I was trying to run this test's on another PC (with limited network access) so I copy/pasted everything that was under ~./gradle/caches
and the project files like build, src and build.gradle
and placed everything on the same place as the original
So once I got everything in place I ran this
gradle --no-daemon --offline cucumber
And I get a failure
> Could not resolve all dependencies for configuration ':classpath'.
> Could not download gradle-cucumber-plugin.jar (com.github.samueltbrown:gradle-cucumber-plugin:0.9): No cached version available for offline mode
The odd thing is that I have the file on the caches directory
~/.gradle/caches/modules-2/files-2.1/com.github.samueltbrown/gradle-cucumber-plugin/0.9/7b65c67654715025eed1924
0c4f7defbef9645e0# ls
gradle-cucumber-plugin-0.9.jar
FYI, I don't have the kind of experience with gradle/java as I would like so any kind of suggestion would be great, this is where the plugin is "required" on the build.gradle
plugins {
id "com.github.samueltbrown.cucumber" version "0.9"
}
Thanks