Rename pom examples [skip ci]

This commit is contained in:
Michiel Borkent 2020-10-17 11:39:13 +02:00
parent c6e0ba997a
commit b61002d5df
3 changed files with 5 additions and 3 deletions

View file

@ -265,7 +265,9 @@ $ examples/which.clj rg
## pom.xml version
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

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bb
(ns get-pom-version
(ns pom-version-get
{:author "Wilker Lucio"}
(:require [clojure.data.xml :as xml]
[clojure.string :as str]))

View file

@ -12,7 +12,7 @@
;; <version>1.0.1</version>
;; </project>
(ns set-pom-version
(ns pom-version-set
{:author "Michiel Borkent"}
(:require [clojure.data.xml :as xml]))