Rename pom examples [skip ci]
This commit is contained in:
parent
c6e0ba997a
commit
b61002d5df
3 changed files with 5 additions and 3 deletions
|
|
@ -265,7 +265,9 @@ $ examples/which.clj rg
|
||||||
## pom.xml version
|
## pom.xml version
|
||||||
|
|
||||||
A script to retrieve the version from a `pom.xml` file. See
|
A script to retrieve the version from a `pom.xml` file. See
|
||||||
[examples/get_pom_version.clj](get_pom_version.clj). Written by [@wilkerlucio](https://github.com/wilkerlucio).
|
[pom_version_get.clj](pom_version_get.clj). Written by [@wilkerlucio](https://github.com/wilkerlucio).
|
||||||
|
|
||||||
|
Also see [pom_version_set.clj](pom_version_set.clj) to set the pom version.
|
||||||
|
|
||||||
## Whatsapp frequencies
|
## Whatsapp frequencies
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env bb
|
#!/usr/bin/env bb
|
||||||
|
|
||||||
(ns get-pom-version
|
(ns pom-version-get
|
||||||
{:author "Wilker Lucio"}
|
{:author "Wilker Lucio"}
|
||||||
(:require [clojure.data.xml :as xml]
|
(:require [clojure.data.xml :as xml]
|
||||||
[clojure.string :as str]))
|
[clojure.string :as str]))
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
;; <version>1.0.1</version>
|
;; <version>1.0.1</version>
|
||||||
;; </project>
|
;; </project>
|
||||||
|
|
||||||
(ns set-pom-version
|
(ns pom-version-set
|
||||||
{:author "Michiel Borkent"}
|
{:author "Michiel Borkent"}
|
||||||
(:require [clojure.data.xml :as xml]))
|
(:require [clojure.data.xml :as xml]))
|
||||||
|
|
||||||
Loading…
Reference in a new issue