-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
12 lines (12 loc) · 728 Bytes
/
project.clj
File metadata and controls
12 lines (12 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
(defproject aws-clojure-simple-http-endpoint "0.1.0-SNAPSHOT"
:description "This example demonstrates how to setup a simple HTTP GET endpoint using Clojure. Once you ping it, it will reply with the current time."
:url "http://example.com/FIXME"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.11.1"]
[org.clojure/data.json "2.4.0"]
[com.amazonaws/aws-lambda-java-core "1.2.1"]
[com.amazonaws/aws-lambda-java-events "3.11.0"]]
:uberjar-name "aws-clojure-simple-http-endpoint.jar"
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})