I found a few minor issues when getting the build running on Mac OS...
.DS_Store isn't excluded by .gitignore
redis-server is required but not documented in README
redis-server failed to start on MacOS --> fixed by adding Terminal and IDEA to "Developer tools" in settings
"do you want application redis-server to accept incoming network connections" on MacOS --> fixed by adding RedisServer.builder().setting("bind 127.0.0.1" to test cases
The easy workaround is to skip the tests, but this is wrong and feels wrong: mvn -DskipTests clean package
@jzonthemtn I'm happy to take the lead on this one
I found a few minor issues when getting the build running on Mac OS...
.DS_Store
isn't excluded by.gitignore
redis-server
is required but not documented in READMEredis-server
failed to start on MacOS --> fixed by adding Terminal and IDEA to "Developer tools" in settingsRedisServer.builder().setting("bind 127.0.0.1"
to test casesThe easy workaround is to skip the tests, but this is wrong and feels wrong:
mvn -DskipTests clean package
@jzonthemtn I'm happy to take the lead on this one