Skip to content

Commit 6ee2d0c

Browse files
committed
update jackson core and move to parent
1 parent 543a30f commit 6ee2d0c

9 files changed

Lines changed: 39 additions & 15 deletions

File tree

access-control-app/project.clj

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,12 @@
2828
(defproject nasa-cmr/cmr-access-control-app "0.1.0-SNAPSHOT"
2929
:description "Implements the CMR access control application."
3030
:url "https://github.com/nasa/Common-Metadata-Repository/tree/master/access-control-app"
31+
:parent-project {:path "../project.clj"
32+
:inherit [:managed-dependencies]}
3133
:dependencies ~(concat '[[cheshire "5.12.0"
3234
:exclusions [com.fasterxml.jackson.core/jackson-core]]
3335
[clj-time "0.15.1"]
34-
[com.fasterxml.jackson.core/jackson-core "2.21.2"]
36+
[com.fasterxml.jackson.core/jackson-core]
3537
[commons-codec/commons-codec "1.11"]
3638
[commons-io "2.18.0"]
3739
[compojure "1.6.1"
@@ -52,8 +54,9 @@
5254
:exclusions [org.eclipse.jetty.ee9/jetty-ee9-servlet]]
5355
[ring/ring-json "0.5.1"]]
5456
project-dependencies)
55-
:plugins [[lein-modules "0.3.11"]
56-
[lein-exec "0.3.7"]
57+
:plugins [[lein-exec "0.3.7"]
58+
[lein-modules "0.3.11"]
59+
[lein-parent "0.3.9"]
5760
[lein-shell "0.5.0"]]
5861
:repl-options {:init-ns user}
5962
:jvm-opts ^:replace ["-server"

bootstrap-app/project.clj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
(defproject nasa-cmr/cmr-bootstrap-app "0.1.0-SNAPSHOT"
22
:description "Bootstrap is a CMR application that can bootstrap the CMR with data from Catalog REST."
33
:url "https://github.com/nasa/Common-Metadata-Repository/tree/master/bootstrap-app"
4+
:parent-project {:path "../project.clj"
5+
:inherit [:managed-dependencies]}
46
:dependencies [[cheshire "5.12.0"
57
:exclusions [com.fasterxml.jackson.core/jackson-core]]
68
[clj-http "2.3.0"]
7-
[com.fasterxml.jackson.core/jackson-core "2.21.2"]
9+
[com.fasterxml.jackson.core/jackson-core]
810
[clj-time "0.15.1"]
911
[commons-codec/commons-codec "1.11"]
1012
[commons-io "2.18.0"]
@@ -37,6 +39,7 @@
3739
[ring/ring-json "0.5.1"]]
3840
:plugins [[io.github.jaybarra/drift "1.5.4.2-SNAPSHOT" :exclusions [clojure-tools]]
3941
[lein-exec "0.3.7"]
42+
[lein-parent "0.3.9"]
4043
[lein-shell "0.5.0"]]
4144
:repl-options {:init-ns user}
4245
:jvm-opts ^:replace ["-server"

common-app-lib/project.clj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
(defproject nasa-cmr/cmr-common-app-lib "0.1.0-SNAPSHOT"
22
:description "Library containing application services code common to multiple CMR applications."
33
:url "https://github.com/nasa/Common-Metadata-Repository/tree/master/common-app-lib"
4+
:parent-project {:path "../project.clj"
5+
:inherit [:managed-dependencies]}
46
:dependencies [[cheshire "5.12.0"
57
:exclusions [com.fasterxml.jackson.core/jackson-core]]
6-
[com.fasterxml.jackson.core/jackson-core "2.21.2"]
8+
[com.fasterxml.jackson.core/jackson-core]
79
[clj-time "0.15.1"]
810
[compojure "1.6.1"
911
:exclusions [commons-fileupload]]
@@ -22,7 +24,8 @@
2224
:exclusions [org.eclipse.jetty.ee9/jetty-ee9-servlet]]
2325
[ring/ring-json "0.5.1"]
2426
[selmer "1.12.5"]]
25-
:plugins [[lein-shell "0.5.0"]]
27+
:plugins [[lein-parent "0.3.9"]
28+
[lein-shell "0.5.0"]]
2629
:jvm-opts ^:replace ["-server"
2730
"-Dclojure.compiler.direct-linking=true"]
2831
:profiles {:security {:plugins [[com.livingsocial/lein-dependency-check "1.4.1"]]

common-lib/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
[clojusc/ltest "0.3.0"]
2020
[com.dadrox/quiet-slf4j "0.1"]
21-
[com.fasterxml.jackson.core/jackson-core "2.21.2"]
21+
[com.fasterxml.jackson.core/jackson-core]
2222
[com.fasterxml.jackson.dataformat/jackson-dataformat-cbor "2.21.2"
2323
:exclusions [com.fasterxml.jackson.core/jackson-databind]]
2424
[com.gfredericks/test.chuck "0.2.9"]

metadata-db-app/project.clj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
:description "The metadata db is a micro-service that provides
33
support for persisting metadata concepts."
44
:url "https://github.com/nasa/Common-Metadata-Repository/tree/master/metadata-db-app"
5+
:parent-project {:path "../project.clj"
6+
:inherit [:managed-dependencies]}
57
:dependencies [[cheshire "5.12.0" :exclusions [com.fasterxml.jackson.core/jackson-core]]
68
[clj-http "3.11.0"]
79
[clj-time "0.15.1"]
8-
[com.fasterxml.jackson.core/jackson-core "2.21.2"]
10+
[com.fasterxml.jackson.core/jackson-core]
911
[commons-io "2.18.0"] ;; used by migration
1012
[compojure "1.6.1" :exclusions [commons-fileupload]]
1113
[inflections "0.13.0"]
@@ -35,6 +37,7 @@
3537
[ring/ring-json "0.5.1"]]
3638
:plugins [[io.github.jaybarra/drift "1.5.4.2-SNAPSHOT" :exclusions [clojure-tools]]
3739
[lein-exec "0.3.7"]
40+
[lein-parent "0.3.9"]
3841
[lein-shell "0.5.0"]]
3942
:repl-options {:init-ns user}
4043
:jvm-opts ^:replace ["-server"

schema-validation-lib/project.clj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
(defproject nasa-cmr/cmr-schema-validation-lib "0.1.0-SNAPSHOT"
22
:description "Provides json schema validation code"
33
:url "https://github.com/nasa/Common-Metadata-Repository/tree/master/schema-validation-lib"
4+
:parent-project {:path "../project.clj"
5+
:inherit [:managed-dependencies]}
46
:plugins [[lein-exec "0.3.7"]
7+
[lein-parent "0.3.9"]
58
[lein-shell "0.5.0"]]
69
:dependencies [[cheshire "5.12.0"
710
:exclusions [com.fasterxml.jackson.core/jackson-core]]
8-
[com.fasterxml.jackson.core/jackson-core "2.21.2"]
11+
[com.fasterxml.jackson.core/jackson-core]
912
[com.github.everit-org.json-schema/org.everit.json.schema "1.14.3"]
1013
[org.clojure/clojure "1.11.2"]]
1114
:repositories [["jitpack.io" "https://jitpack.io"]]

search-app/project.clj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
(defproject nasa-cmr/cmr-search-app "0.1.0-SNAPSHOT"
22
:description "Provides a public search API for concepts in the CMR."
33
:url "https://github.com/nasa/Common-Metadata-Repository/tree/master/search-app"
4+
:parent-project {:path "../project.clj"
5+
:inherit [:managed-dependencies]}
46
:dependencies [[cheshire "5.12.0"
57
:exclusions [com.fasterxml.jackson.core/jackson-core]]
6-
[com.fasterxml.jackson.core/jackson-core "2.21.2"]
8+
[com.fasterxml.jackson.core/jackson-core]
79
[clj-time "0.15.1"]
810
[commons-codec/commons-codec "1.11"]
911
[commons-io/commons-io "2.18.0"]
@@ -55,7 +57,8 @@
5557
:repositories [["osgeo" "https://download.osgeo.org/webdav/geotools"]
5658
["geo" "https://repo.osgeo.org/repository/release"]
5759
["geo-snapshot" "https://repo.osgeo.org/repository/snapshot"]]
58-
:plugins [[lein-exec "0.3.7"]]
60+
:plugins [[lein-exec "0.3.7"]
61+
[lein-parent "0.3.9"]]
5962
:repl-options {:init-ns user
6063
:timeout 120000}
6164
:jvm-opts ^:replace ["-server"

search-relevancy-test/project.clj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
(defproject nasa-cmr/cmr-search-relevancy-test "0.1.0-SNAPSHOT"
22
:description "Tests for measuring CMR search relevancy"
33
:url "https://github.com/nasa/Common-Metadata-Repository/tree/master/search-relevancy-test"
4+
:parent-project {:path "../project.clj"
5+
:inherit [:managed-dependencies]}
46
:license {:name "Eclipse Public License"
57
:url "http://www.eclipse.org/legal/epl-v10.html"}
68
:dependencies [[camel-snake-kebab "0.4.0"]
79
[cheshire "5.12.0"
810
:exclusions [com.fasterxml.jackson.core/jackson-core]]
9-
[com.fasterxml.jackson.core/jackson-core "2.21.2"]
11+
[com.fasterxml.jackson.core/jackson-core]
1012
[clj-http "2.3.0"]
1113
[clj-time "0.15.1"]
1214
[commons-codec/commons-codec "1.11"]
@@ -19,7 +21,8 @@
1921
[org.clojure/clojure "1.11.2"]
2022
[org.clojure/tools.reader "1.3.2"]
2123
[potemkin "0.4.5"]]
22-
:plugins [[lein-shell "0.5.0"]]
24+
:plugins [[lein-parent "0.3.9"]
25+
[lein-shell "0.5.0"]]
2326
:main ^:skip-aot search-relevancy-test.runner
2427
:jvm-opts ^:replace ["-server"
2528
"-XX:-OmitStackTraceInFastThrow"

system-int-test/project.clj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
(defproject nasa-cmr/cmr-system-int-test "0.1.0-SNAPSHOT"
22
:description "This project provides end to end integration testing for CMR components."
33
:url "https://github.com/nasa/Common-Metadata-Repository/tree/master/system-int-test"
4+
:parent-project {:path "../project.clj"
5+
:inherit [:managed-dependencies]}
46
:license {:name "Eclipse Public License"
57
:url "http://www.eclipse.org/legal/epl-v10.html"}
68
:dependencies [[cheshire "5.12.0"
79
:exclusions [com.fasterxml.jackson.core/jackson-core]]
8-
[com.fasterxml.jackson.core/jackson-core "2.21.2"]
10+
[com.fasterxml.jackson.core/jackson-core]
911
[clj-http "2.3.0"]
1012
[clj-time "0.15.1"]
1113
[clj-xml-validation "1.0.2"]
@@ -46,7 +48,8 @@
4648
[org.eclipse.jetty/jetty-http "12.1.8"]
4749
[org.eclipse.jetty/jetty-util "12.1.8"]
4850
[org.eclipse.jetty/jetty-io "12.1.8"]]
49-
:plugins [[lein-shell "0.5.0"]]
51+
:plugins [[lein-parent "0.3.9"]
52+
[lein-shell "0.5.0"]]
5053
:jvm-opts ^:replace ["-server"
5154
"-XX:-OmitStackTraceInFastThrow"
5255
"-Dclojure.compiler.direct-linking=true"

0 commit comments

Comments
 (0)