aboutsummaryrefslogtreecommitdiffstats
path: root/project.clj
diff options
context:
space:
mode:
authorSchmalzried, Terry (ts862m) <ts862m@att.com>2020-07-27 12:31:52 -0400
committerSchmalzried, Terry (ts862m) <ts862m@att.com>2020-07-27 13:57:02 -0400
commit2b4495aa0a51f3a84b50273fbf391b419cd534e5 (patch)
tree058947f9ba2c80176b6732f554b090dfceffc9fd /project.clj
parent7b307d309bc01b2c13527342dae623231ea5d9ad (diff)
Upgrade dependencies
Delete unused files Dockerfile and startSCH.sh Issue-ID: DCAEGEN2-2330 Change-Id: Id2f699b0530545628c77728ffe00740975aad014 Signed-off-by: Schmalzried, Terry (ts862m) <ts862m@att.com>
Diffstat (limited to 'project.clj')
-rw-r--r--project.clj20
1 files changed, 10 insertions, 10 deletions
diff --git a/project.clj b/project.clj
index 2432aec..67b841a 100644
--- a/project.clj
+++ b/project.clj
@@ -1,7 +1,7 @@
; ============LICENSE_START=======================================================
; org.onap.dcae
; ================================================================================
-; Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+; Copyright (c) 2017-2020 AT&T Intellectual Property. All rights reserved.
; ================================================================================
; Licensed under the Apache License, Version 2.0 (the "License");
; you may not use this file except in compliance with the License.
@@ -21,24 +21,24 @@
; Using lein for REPL and testing because couldn't get Maven clojure plugin to work
; for these functional areas.
-(defproject service-change-handler "1.3.2"
+(defproject service-change-handler "1.4.0"
:description "Service change handler"
- :dependencies [[org.clojure/clojure "1.8.0"]
- [cheshire/cheshire "5.8.0"]
- [org.clojure/tools.logging "0.4.0"]
- [clj-http/clj-http "3.3.0"]
- [org.bovinegenius/exploding-fish "0.3.4"]
+ :dependencies [[org.clojure/clojure "1.10.1"]
+ [cheshire/cheshire "5.10.0"]
+ [org.clojure/tools.logging "1.1.0"]
+ [clj-http/clj-http "3.10.1"]
+ [org.bovinegenius/exploding-fish "0.3.6"]
[clj-yaml/clj-yaml "0.4.0"]
[org.onap.sdc.sdc-distribution-client/sdc-distribution-client "1.3.0"]
- [ch.qos.logback/logback-classic "1.2.1"]
+ [ch.qos.logback/logback-classic "1.2.3"]
]
; TODO: Fill in the onap maven repository info
:repositories [["onap nexus" "https://nexus.onap.org/content/repositories/snapshots/"]]
:plugins [[lein-cloverage "1.0.9"]]
- :profiles { :test { :dependencies [[clj-fakes "0.9.0"]] }
+ :profiles { :test { :dependencies [[clj-fakes "0.12.0"]] }
; Added this for cloverage
- :dev { :dependencies [[clj-fakes "0.9.0"]] } }
+ :dev { :dependencies [[clj-fakes "0.12.0"]] } }
)