Skip to content

Instantly share code, notes, and snippets.

View AdamCarroll's full-sized avatar

Adam Carroll AdamCarroll

View GitHub Profile
@AdamCarroll
AdamCarroll / mac-setup-redis.md
Created April 29, 2021 19:30 — forked from tomysmile/mac-setup-redis.md
Brew install Redis on Mac

type below:

brew update
brew install redis

To have launchd start redis now and restart at login:

brew services start redis
@AdamCarroll
AdamCarroll / publish-to-local-maven.gradle
Created March 25, 2018 13:46
Gradle snippet for local Maven publish
apply plugin: 'maven-publish'
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}
/*
* A workaround for Gradle projects using TestFX and multiple JDK versions
*
* Following conversation on this thread:
* https://github.com/TestFX/TestFX/issues/433
*
* For more info on how TestFX is being using including for headless testing see:
* https://vocabhunter.github.io/2016/07/27/TestFX.html
*/
0xccc500c2a6958d4771bbfdfa486f8629b21f08bd