diff options
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 46 |
1 files changed, 37 insertions, 9 deletions
@@ -1,4 +1,25 @@ <?xml version="1.0" encoding="UTF-8"?> + +<!-- +================================================================================ +Copyright (c) 2016-2018 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. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +============LICENSE_END========================================================= + +ECOMP is a trademark and service mark of AT&T Intellectual Property. +--> + <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> @@ -6,13 +27,13 @@ <parent> <groupId>org.onap.oparent</groupId> <artifactId>oparent</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>1.1.0</version> </parent> <groupId>org.onap.dcaegen2.platform</groupId> <artifactId>servicechange-handler</artifactId> - <version>1.0.0</version> + <version>1.1.4</version> <!-- Not sure why clojure-maven-plugin says packaging should be "clojure" --> <packaging>jar</packaging> @@ -26,7 +47,7 @@ </repositories> <properties> - <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format> + <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format> <nexusproxy>https://nexus.onap.org</nexusproxy> <snapshots.path>content/repositories/snapshots/</snapshots.path> <releases.path>content/repositories/releases/</releases.path> @@ -41,23 +62,23 @@ <dependency> <groupId>cheshire</groupId> <artifactId>cheshire</artifactId> - <version>5.6.3</version> + <version>5.8.0</version> </dependency> <dependency> - <groupId>org.openecomp.sdc.sdc-distribution-client</groupId> + <groupId>org.onap.sdc.sdc-distribution-client</groupId> <artifactId>sdc-distribution-client</artifactId> - <version>1.1.32</version> + <version>1.3.0</version> </dependency> <dependency> <groupId>com.taoensso</groupId> <artifactId>timbre</artifactId> - <version>4.7.4</version> + <version>4.10.0</version> </dependency> <!-- Does magic so traditional Java loggers show up --> <dependency> <groupId>com.fzakaria</groupId> <artifactId>slf4j-timbre</artifactId> - <version>0.3.2</version> + <version>0.3.8</version> </dependency> <dependency> <groupId>clj-http</groupId> @@ -74,6 +95,12 @@ <artifactId>clj-yaml</artifactId> <version>0.4.0</version> </dependency> + <dependency> + <groupId>clj-fakes</groupId> + <artifactId>clj-fakes</artifactId> + <version>0.9.0</version> + <scope>test</scope> + </dependency> </dependencies> <build> @@ -190,7 +217,8 @@ <maintainer>Michael Hwang</maintainer> <imageName>${onap.nexus.dockerregistry.daily}/onap/${project.groupId}.${project.artifactId}</imageName> <imageTags> - <imageTag>${project.version}-${maven.build.timestamp}</imageTag> + <imageTag>${project.version}-SNAPSHOT-${maven.build.timestamp}Z</imageTag> + <imageTag>${project.version}</imageTag> <imageTag>latest</imageTag> </imageTags> <baseImage>java:8-jre</baseImage> |