Skip to content

Commit

Permalink
init exposed
Browse files Browse the repository at this point in the history
  • Loading branch information
awb99 committed Mar 5, 2024
1 parent 3d7ad03 commit e716e82
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 32 deletions.
67 changes: 44 additions & 23 deletions build.clj
Original file line number Diff line number Diff line change
@@ -1,34 +1,55 @@
(ns build
(:require
[babashka.fs :as fs]
[clojure.java.io :as io]
[clojure.string :as str]
[clojure.tools.build.api :as b]
[org.corfield.build :as bb] ; https://github.com/seancorfield/build-clj
[deps-deploy.deps-deploy :as dd]))


(def lib 'org.pinkgorilla/websocket)
(def version (format "0.0.%s" (b/git-count-revs nil)))
(def class-dir "target/classes")
(def basis (b/create-basis {:project "deps.edn"}))
(def jar-file (format "target/%s-%s.jar" (name lib) version))

(defn clean [_]
(b/delete {:path "target"}))

(defn- spit-version []
(spit (doto (fs/file "target/classes/META-INF/pink-gorilla/websocket/meta.edn")
(-> fs/parent fs/create-dirs)) {:module-name "websocket"
:version version}))

(def pom-template
[[:licenses
[:license
[:name "Eclipse Public License"]
[:url "https://www.eclipse.org/legal/epl-v10.html"]]]
[:developers
[:developer
[:name "pink-gorilla"]]]
[:scm
[:url "https://github.com/pink-gorilla/websocket/"]
[:connection "scm:git:git://github.com/pink-gorilla/websocket.git"]
[:developerConnection "scm:git:ssh://[email protected]/pink-gorilla/websocket.git"]]])

(defn jar "build the JAR" [opts]
(println "Building the JAR")
#_(spit (doto (fs/file "resources/META-INF/pink-gorilla/webly3/meta.edn")
(-> fs/parent fs/create-dirs)) {:module-name "rest"
:version version})
(-> opts
(assoc :lib lib
:version version
:src-pom "template/pom.xml"
:transitive true)
;(bb/run-tests)
;(bb/clean)
(bb/jar)))
(def opts {:class-dir class-dir
:lib lib
:version version
:basis basis
:pom-data pom-template
:src-dirs ["src"]})

(defn jar [_]
(b/write-pom opts)
(b/copy-dir {:src-dirs ["src" "resources"]
:target-dir class-dir})
(spit-version)
(b/jar {:class-dir class-dir
:jar-file jar-file}))

(defn deploy "Deploy the JAR to Clojars." [opts]
(println "Deploying to Clojars.")
(-> opts
(assoc :lib lib
:version version)
(bb/deploy)))
(defn deploy "Deploy the JAR to Clojars." [_]
(println "Deploying to Clojars..")
(dd/deploy {:installer :remote
;:sign-releases? true
:pom-file (b/pom-path (select-keys opts [:lib :class-dir]))
;:artifact "target/tech.ml.dataset.jar"
:artifact (b/resolve-path jar-file)}))
14 changes: 6 additions & 8 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,12 @@
:nrepl {:extra-deps {nrepl/nrepl {:mvn/version "0.9.0"}
cider/cider-nrepl {:mvn/version "0.28.3"}}
:main-opts ["-m" "nrepl.cmdline"]}


:build {:deps {io.github.clojure/tools.build {:git/tag "v0.6.1" :git/sha "515b334"}
io.github.slipset/deps-deploy {:git/sha "b4359c5d67ca002d9ed0c4b41b710d7e5a82e3bf"}
io.github.seancorfield/build-clj {:git/tag "v0.5.4" :git/sha "bc9c0cc"}
;rewrite-clj/rewrite-clj {:mvn/version "1.0.699-alpha"}
babashka/fs {:mvn/version "0.0.5"}}
:ns-default build}

; github ci
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.9.6"}
slipset/deps-deploy {:mvn/version "0.2.1"}
babashka/fs {:mvn/version "0.0.5"}}
:ns-default build}

;
}}
Expand Down
4 changes: 3 additions & 1 deletion resources/ext/ws.edn
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
; build
:lazy false
:cljs-namespace [modular.ws.core]
:cljs-ns-bindings {'modular.ws.core {'send! modular.ws.core/send!}}}
:cljs-ns-bindings {'modular.ws.core {'send! modular.ws.core/send!
'init-ws! modular.ws.core/init-ws!
}}}

0 comments on commit e716e82

Please sign in to comment.