Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

Commit

Permalink
Bump version up [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
DeLaGuardo committed Oct 9, 2018
1 parent d94a5c2 commit a99011e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,27 +30,27 @@ Because soap-ws depends on a list of external dependencies that are not publishe
{...
:repositories [["enonic" "https://repo.enonic.com/public/"]
...]
:dependencies [[io.xapix/paos "0.2.1"]
:dependencies [[io.xapix/paos "0.2.2"]
...]
}

## boot

(set-env! :repositories #(conj % ["enonic" {:url "https://repo.enonic.com/public/"}])
:dependencies #(conj % [io.xapix/paos "0.2.1"])
:dependencies #(conj % [io.xapix/paos "0.2.2"])

## deps.edn

{...
:mvn/repos {"enonic" {:url "https://repo.enonic.com/public/"}}}}
:deps {io.xapix/paos {:mvn/version "0.2.1"}
:deps {io.xapix/paos {:mvn/version "0.2.2"}
...}
...
}

## Command line interface

You can examine any WSDL with simple command line interface. If you already have all required repos in your deps.edn just execute `clj -Sdeps '{:deps {io.xapix/paos {:mvn/version "0.2.1"}}}' -m paos.core -h` and check available options.
You can examine any WSDL with simple command line interface. If you already have all required repos in your deps.edn just execute `clj -Sdeps '{:deps {io.xapix/paos {:mvn/version "0.2.2"}}}' -m paos.core -h` and check available options.

Or you can use standalone script with everything inplace:

Expand All @@ -59,7 +59,7 @@ Or you can use standalone script with everything inplace:
set -e

MVN_REPOS='{"enonic" {:url "https://repo.enonic.com/public/"}}'
DEPS='{io.xapix/paos {:mvn/version "0.2.1"}}'
DEPS='{io.xapix/paos {:mvn/version "0.2.2"}}'

clojure -Srepro -Sdeps "{:deps $DEPS :mvn/repos $MVN_REPOS}" -m paos.core $@
```
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.xapix</groupId>
<artifactId>paos</artifactId>
<version>0.2.2-SNAPSHOT</version>
<version>0.2.2</version>
<name>paos</name>
<dependencies>
<dependency>
Expand Down

0 comments on commit a99011e

Please sign in to comment.