-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add version control info to release artifact pom (#72)
This will allow clojars and cljdoc to link back to project sources. Also: Added description (grabbed from GitHub repo description) and url. These can be interesting to services. Closes #71
- Loading branch information
Showing
2 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,8 +24,14 @@ | |
:version version | ||
:basis basis | ||
:src-dirs ["src"] | ||
:scm {:url "https://github.com/babashka/http-client" | ||
:connection "scm:git:[email protected]:babashka/http-client.git" | ||
:developerConnection "scm:git:[email protected]:babashka/http-client.git" | ||
:tag (format "v%s" version)} | ||
:pom-data | ||
[[:licenses | ||
[[:description "HTTP client for Clojure and Babashka built on java.net.http"] | ||
[:url "https://github.com/babashka/http-client"] | ||
[:licenses | ||
[:license | ||
[:name "MIT License"] | ||
[:url "https://opensource.org/license/mit/"]]]]}) | ||
|