main | ||
dev |
A micro library that provides a Clojure implementation of the Apache Software Foundation's 3rd Party License Policy.
API documentation is available here.
Express the correct maven dependencies in your deps.edn
:
{:deps {com.github.pmonks/asf-cat {:mvn/version "LATEST_CLOJARS_VERSION"}}}
(ns your.ns
(:require [asf-cat.api :as asf]))
This project uses the git-flow branching strategy, with the caveat that the permanent branches are called main
and dev
, and any changes to the main
branch are considered a release and auto-deployed (JARs to Clojars, API docs to GitHub Pages, etc.).
For this reason, all development must occur either in branch dev
, or (preferably) in temporary branches off of dev
. All PRs from forked repos must also be submitted against dev
; the main
branch is only updated from dev
via PRs created by the core development team. All other changes submitted to main
will be rejected.
asf-cat
uses tools.build
. You can get a list of available tasks by running:
clojure -A:deps -T:build help/doc
Of particular interest are:
clojure -T:build test
- run the unit testsclojure -T:build lint
- run the linters (clj-kondo and eastwood)clojure -T:build ci
- run the full CI suite (check for outdated dependencies, run the unit tests, run the linters)clojure -T:build install
- build the JAR and install it locally (e.g. so you can test it with downstream code)Please note that the deploy
task is restricted to the core development team (and will not function if you run it yourself).
Copyright © 2021 Peter Monks
Distributed under the Apache License, Version 2.0.
SPDX-License-Identifier: Apache-2.0
The Apache "feather" logo is trademarked by the Apache Software Foundation and distributed under the Apache License, Version 2.0.
The Clip Art Silhouette Of A Cat Reaching Into The Sky image is distributed under the terms of the license documented at animalclipart.net.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close