forked from TooTallNate/Java-WebSocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
28 lines (26 loc) · 1.34 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
(defproject org.java-websocket/java-websocket "1.3.4"
:description "A barebones WebSocket client and server implementation written 100% in Java"
:url "https://github.com/TooTallNate/Java-WebSocket"
: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 []
:omit-source true
:java-source-paths ["src/main/java"]
:javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"]
:signing {:gpg-key "7A9D8E91"}
:deploy-repositories [["releases" :clojars]
["snapshots" :clojars]]
:pom-addition [:developers [:developer
[:name "Nathan Rajlich"]
[:url "https://github.com/TooTallNate"]
[:email "[email protected]"]]
[:developer
[:name "David Rohmer"]
[:url "https://github.com/Davidiusdadi"]
[:email "[email protected]"]]
[:developer
[:name "Marcel Prestel"]
[:url "https://github.com/marci4"]
[:email "[email protected]"]]])