Current artifact coordinates:
io.github.hatappo/bisql
bb lint
bb test
bb jar <version>
Use ~/.m2/settings.xml:
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>clojars</id>
<username>YOUR_CLOJARS_USERNAME</username>
<password>YOUR_DEPLOY_TOKEN</password>
</server>
</servers>
</settings>
Notes:
id must be clojarsusername must be the Clojars usernamepassword must be a deploy tokenbb release <version>
After publishing, confirm that the released artifact resolves from Clojars and
that bisql.core can be loaded:
bb release-check <version>
This runs the equivalent of:
clojure -Sdeps ... -Pclojure -Sdeps ... -M -e "(require 'bisql.core) (println :ok)"For convenience, this project also provides:
bb token
This opens ~/.m2/settings.xml so you can paste a deploy token, publish, and remove it afterward.
Check:
~/.m2/settings.xml existsid is clojarsusername is correctpassword is a deploy tokennth not supported on this type: CharacterThis came from passing :repository "clojars" directly to deps-deploy 0.2.2.
build.clj now works around it by resolving the repository map before deploy.
Can you improve this documentation?Edit on GitHub
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |