At the moment collecting notes here with respect to running the samples on Windows and the issues involved with doing so.
- producer_with_git
- Windows path and JGit error
- Git URIish: git://file://C:\git\spring-cloud-contract-sampels\producer_with_git\../target/
- Seems like the '\' is the culprit
- producer_with_git_empty
- Same error as
producer_with_git
- producer_proto
- Uses /bin/bash, which isn't Windows friendly...
- producer_webflux_security
./keygen.sh bash and sh aren't natively available
GlobalSecurityConfig.kt is expecting public.txt to only have Linux line endings
- consumer
ROOT environment variable relies on pwd command (not available on Windows by default)
pwd command is sometimes available for Windows users when running in Bash from Git for Windows. pwd returns a *nix style path which does not work with the Java usage in the consumer.
- consumer_proto
- Same issue as with
producer_proto
- ... more to come
At the moment collecting notes here with respect to running the samples on Windows and the issues involved with doing so.
producer_with_git./keygen.shbash and sh aren't natively availableGlobalSecurityConfig.ktis expectingpublic.txtto only have Linux line endingsROOTenvironment variable relies onpwdcommand (not available on Windows by default)pwdcommand is sometimes available for Windows users when running in Bash from Git for Windows.pwdreturns a *nix style path which does not work with the Java usage in the consumer.producer_proto