forked from TooTallNate/Java-WebSocket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
22 lines (20 loc) · 1.05 KB
/
project.clj
File metadata and controls
22 lines (20 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject org.java-websocket/java-websocket "1.3.1-snapshot"
:description "A barebones WebSocket client and server implementation written 100% in Java"
:url "http://java-websocket.org/"
:scm {:name "git"
:url "https://github.com/TooTallNate/Java-WebSocket"}
:license {:name "MIT License"
:url "https://github.com/TooTallNate/Java-WebSocket/blob/master/LICENSE"}
:source-paths []
:java-source-paths ["src/main/java"]
:javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"]
:signing {:gpg-key "C8F8CC77"}
:deploy-repositories [["clojars" {:creds :gpg}]]
:pom-addition [:developers [:developer
[:name "Nathan Rajlich"]
[:url "https://github.com/TooTallNate"]
[:email "nathan@tootallnate.net"]]
[:developer
[:name "David Rohmer"]
[:url "https://github.com/Davidiusdadi"]
[:email "rohmer.david@gmail.com"]]])