Skip to content

Commit

Permalink
Update the examples to 1.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Miikka Koskinen committed Jan 17, 2017
1 parent 07f433e commit 7e790cc
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 14 deletions.
1 change: 1 addition & 0 deletions examples/metrics-ring/.gitignore
@@ -0,0 +1 @@
target/
4 changes: 3 additions & 1 deletion examples/metrics-ring/README.md
@@ -1,5 +1,7 @@
# Simple compojure-api app

Demonstrates how to use [metrics-clojure](https://github.com/sjl/metrics-clojure) with compojure-api.

## Usage

### Run the application locally
Expand All @@ -19,6 +21,6 @@ java -jar target/server.jar

## License

Copyright © 2016 [Metosin Oy](http://www.metosin.fi)
Copyright © 2016-2017 [Metosin Oy](http://www.metosin.fi)

Distributed under the Eclipse Public License, the same as Clojure.
8 changes: 4 additions & 4 deletions examples/metrics-ring/project.clj
@@ -1,11 +1,11 @@
(defproject example "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:dependencies [[org.clojure/clojure "1.8.0"]
[metosin/compojure-api "1.1.8"]
[metosin/compojure-api "1.1.10"]

[metrics-clojure "2.7.0"]
[metrics-clojure-ring "2.7.0"]]
[metrics-clojure "2.8.0"]
[metrics-clojure-ring "2.8.0"]]

:ring {:handler example.handler/app}
:uberjar-name "server.jar"
:profiles {:dev {:plugins [[ikitommi/lein-ring "0.9.8-SNAPSHOT"]]}})
:profiles {:dev {:plugins [[lein-ring "0.10.0"]]}})
1 change: 1 addition & 0 deletions examples/resources/.gitignore
@@ -0,0 +1 @@
target/
2 changes: 1 addition & 1 deletion examples/resources/README.md
Expand Up @@ -27,6 +27,6 @@ java -jar target/server.jar

## License

Copyright © 2014-2016 [Metosin Oy](http://www.metosin.fi)
Copyright © 2014-2017 [Metosin Oy](http://www.metosin.fi)

Distributed under the Eclipse Public License, the same as Clojure.
4 changes: 2 additions & 2 deletions examples/resources/project.clj
@@ -1,7 +1,7 @@
(defproject example "0.1.0-SNAPSHOT"
:description "Example on Compojure-api resources"
:dependencies [[org.clojure/clojure "1.8.0"]
[metosin/compojure-api "1.1.8"]]
[metosin/compojure-api "1.1.10"]]
:ring {:handler example.handler/app}
:uberjar-name "server.jar"
:profiles {:dev {:plugins [[ikitommi/lein-ring "0.9.8-SNAPSHOT"]]}})
:profiles {:dev {:plugins [[lein-ring "0.10.0"]]}})
1 change: 1 addition & 0 deletions examples/reusable-resources/.gitignore
@@ -0,0 +1 @@
target/
2 changes: 1 addition & 1 deletion examples/reusable-resources/README.md
Expand Up @@ -27,6 +27,6 @@ java -jar target/server.jar

## License

Copyright © 2014-2016 [Metosin Oy](http://www.metosin.fi)
Copyright © 2014-2017 [Metosin Oy](http://www.metosin.fi)

Distributed under the Eclipse Public License, the same as Clojure.
4 changes: 2 additions & 2 deletions examples/reusable-resources/project.clj
@@ -1,7 +1,7 @@
(defproject example "0.1.0-SNAPSHOT"
:description "Example on reusable Compojure-api resources"
:dependencies [[org.clojure/clojure "1.8.0"]
[metosin/compojure-api "1.1.8"]]
[metosin/compojure-api "1.1.10"]]
:ring {:handler example.handler/app}
:uberjar-name "server.jar"
:profiles {:dev {:plugins [[ikitommi/lein-ring "0.9.8-SNAPSHOT"]]}})
:profiles {:dev {:plugins [[lein-ring "0.10.0"]]}})
1 change: 1 addition & 0 deletions examples/simple/.gitignore
@@ -0,0 +1 @@
target/
2 changes: 1 addition & 1 deletion examples/simple/README.md
Expand Up @@ -19,6 +19,6 @@ java -jar target/server.jar

## License

Copyright © 2016 [Metosin Oy](http://www.metosin.fi)
Copyright © 2016-2017 [Metosin Oy](http://www.metosin.fi)

Distributed under the Eclipse Public License, the same as Clojure.
4 changes: 2 additions & 2 deletions examples/simple/project.clj
@@ -1,7 +1,7 @@
(defproject example "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:dependencies [[org.clojure/clojure "1.8.0"]
[metosin/compojure-api "1.1.8"]]
[metosin/compojure-api "1.1.10"]]
:ring {:handler example.handler/app}
:uberjar-name "server.jar"
:profiles {:dev {:plugins [[ikitommi/lein-ring "0.9.8-SNAPSHOT"]]}})
:profiles {:dev {:plugins [[lein-ring "0.10.0"]]}})

0 comments on commit 7e790cc

Please sign in to comment.