A Serverless plugin which uses Leiningen to package services written in [Clojure].
This plugin simply runs either lein do test, uberjar or lein uberjar before deploying the package. If you do not want to run tests before uberjar it can be disabled with custom serverless.yml option.
Easy way to make AWS Lambda compatible Clojure functions is Lambada https://github.com/uswitch/lambada.
npm install serverless clj-pluginService name and artifact name should be the same
service: example
provider:
  name: aws
  runtime: java8
custom:
  test: true
package:
  artifact: target/example.jar
plugins:
 - serverless-clj-pluginCode is based on https://github.com/nervous-systems/serverless-cljs-plugin
serverless-clj-plugin is free and unencumbered public domain software. For more information, see http://unlicense.org/ or the accompanying LICENSE file.