1

I have written custom clojure functions that I want to use in my riemann configuration. I am using leiningen to build jar file (with dependencies) containing my functions. What is the right way to include this jar file in the classpath when starting riemann ?

Viktor K.
  • 2,670
  • 2
  • 19
  • 30

1 Answers1

1

I have only found this way. I'm not sure whether this is the right way :

java -cp "/path/to/my/custom.jar:/path/to/riemann-0.2.6/lib/riemann.jar" riemann.bin /path/to/riemann-0.2.6/etc/riemann.config

Viktor K.
  • 2,670
  • 2
  • 19
  • 30