diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-09-12 15:11:04 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-09-12 15:11:04 -0700 |
commit | df9b15a5caab9a64665df22cd017f36ccd9c98be (patch) | |
tree | e48ec5393ad69c6126e377fb14e5e6c502e593bd /dependencies-clm/pom.xml | |
parent | 6a564773a84a85e7d2bf1a516545a9b9b919085a (diff) |
Standardize 3rd party library versions
Change-Id: Ib36af3afeb6fc1ebd4ea288b130221cc5df53e9e
Issue-ID: INT-656
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'dependencies-clm/pom.xml')
-rw-r--r-- | dependencies-clm/pom.xml | 67 |
1 files changed, 66 insertions, 1 deletions
diff --git a/dependencies-clm/pom.xml b/dependencies-clm/pom.xml index 3826a94..e54d7b5 100644 --- a/dependencies-clm/pom.xml +++ b/dependencies-clm/pom.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- - Copyright (c) 2018 AT&T Technologies + Copyright (c) 2018 AT&T Technologies and others. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -24,10 +24,75 @@ </parent> <artifactId>dependencies-clm</artifactId> <name>oparent/dependencies-clm</name> + <packaging>pom</packaging> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-http</artifactId> + </dependency> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-servlet</artifactId> + </dependency> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-server</artifactId> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-expression</artifactId> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-web</artifactId> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-webmvc</artifactId> + </dependency> + <dependency> + <groupId>commons-beanutils</groupId> + <artifactId>commons-beanutils</artifactId> + </dependency> + <dependency> + <groupId>org.apache.tomcat.embed</groupId> + <artifactId>tomcat-embed-core</artifactId> + </dependency> + <dependency> + <groupId>org.codehaus.jackson</groupId> + <artifactId>jackson-mapper-asl</artifactId> + </dependency> + <dependency> + <groupId>org.webjars</groupId> + <artifactId>bootstrap</artifactId> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> + </dependency> + <dependency> + <groupId>org.webjars</groupId> + <artifactId>jquery</artifactId> + </dependency> + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + </dependency> + <dependency> + <groupId>xerces</groupId> + <artifactId>xercesImpl</artifactId> + </dependency> </dependencies> </project> |