Ganesh Chandrasekaran | 8fe9122 | 2018-06-28 17:39:09 +0900 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- ============LICENSE_START======================================================= |
Ganesh Chandrasekaran | f8ebec6 | 2018-07-18 15:27:52 +0900 | [diff] [blame] | 3 | ONAP : CCSDK ================================================================================ |
| 4 | Copyright (C) 2017-2018 Samsung Electronics. All rights reserved. |
Ganesh Chandrasekaran | 8fe9122 | 2018-06-28 17:39:09 +0900 | [diff] [blame] | 5 | ================================================================================ |
Ganesh Chandrasekaran | f8ebec6 | 2018-07-18 15:27:52 +0900 | [diff] [blame] | 6 | ============================================================================= |
Ganesh Chandrasekaran | 8fe9122 | 2018-06-28 17:39:09 +0900 | [diff] [blame] | 7 | Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 8 | use this file except in compliance with the License. You may obtain a copy |
| 9 | of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required |
| 10 | by applicable law or agreed to in writing, software distributed under the |
| 11 | License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS |
| 12 | OF ANY KIND, either express or implied. See the License for the specific |
Ganesh Chandrasekaran | f8ebec6 | 2018-07-18 15:27:52 +0900 | [diff] [blame] | 13 | language governing permissions and limitations under the License. ============LICENSE_END========================================================= --> |
Ganesh Chandrasekaran | 021cae4 | 2018-07-23 14:27:22 +0900 | [diff] [blame] | 14 | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 15 | xmlns="http://maven.apache.org/POM/4.0.0" |
| 16 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 17 | <modelVersion>4.0.0</modelVersion> |
| 18 | <parent> |
| 19 | <groupId>org.onap.ccsdk.parent</groupId> |
| 20 | <artifactId>binding-parent</artifactId> |
| 21 | <version>1.1.0-SNAPSHOT</version> |
| 22 | <relativePath/> |
| 23 | </parent> |
Ganesh Chandrasekaran | 8fe9122 | 2018-06-28 17:39:09 +0900 | [diff] [blame] | 24 | |
Ganesh Chandrasekaran | 021cae4 | 2018-07-23 14:27:22 +0900 | [diff] [blame] | 25 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
| 26 | <artifactId>saltstack-adapter-provider</artifactId> |
| 27 | <version>0.3.0-SNAPSHOT</version> |
| 28 | <packaging>bundle</packaging> |
| 29 | <name>ccsdk-sli-adaptors :: saltstack-adapter :: ${project.artifactId} |
| 30 | </name> |
Ganesh Chandrasekaran | 8fe9122 | 2018-06-28 17:39:09 +0900 | [diff] [blame] | 31 | |
Ganesh Chandrasekaran | 021cae4 | 2018-07-23 14:27:22 +0900 | [diff] [blame] | 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>com.att.eelf</groupId> |
| 35 | <artifactId>eelf-core</artifactId> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>commons-codec</groupId> |
| 39 | <artifactId>commons-codec</artifactId> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>commons-logging</groupId> |
| 43 | <artifactId>commons-logging</artifactId> |
| 44 | <version>1.2</version> |
| 45 | </dependency> |
Ganesh Chandrasekaran | e8b4238 | 2018-08-24 09:05:12 +0900 | [diff] [blame^] | 46 | <dependency> |
| 47 | <groupId>org.osgi</groupId> |
| 48 | <artifactId>org.osgi.core</artifactId> |
| 49 | <scope>provided</scope> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.slf4j</groupId> |
| 53 | <artifactId>slf4j-api</artifactId> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.slf4j</groupId> |
| 57 | <artifactId>jcl-over-slf4j</artifactId> |
| 58 | </dependency> |
Ganesh Chandrasekaran | 8fe9122 | 2018-06-28 17:39:09 +0900 | [diff] [blame] | 59 | |
Ganesh Chandrasekaran | 021cae4 | 2018-07-23 14:27:22 +0900 | [diff] [blame] | 60 | <!-- Needed to run SSH --> |
| 61 | <dependency> |
| 62 | <groupId>org.apache.sshd</groupId> |
| 63 | <artifactId>sshd-core</artifactId> |
| 64 | <version>0.12.0</version> |
Ganesh Chandrasekaran | 021cae4 | 2018-07-23 14:27:22 +0900 | [diff] [blame] | 65 | </dependency> |
Ganesh Chandrasekaran | 43090d8 | 2018-07-04 14:10:57 +0900 | [diff] [blame] | 66 | |
Ganesh Chandrasekaran | 021cae4 | 2018-07-23 14:27:22 +0900 | [diff] [blame] | 67 | <dependency> |
| 68 | <groupId>org.onap.appc</groupId> |
| 69 | <artifactId>appc-common</artifactId> |
| 70 | <version>1.3.0</version> |
| 71 | </dependency> |
Ganesh Chandrasekaran | 43090d8 | 2018-07-04 14:10:57 +0900 | [diff] [blame] | 72 | |
Ganesh Chandrasekaran | 021cae4 | 2018-07-23 14:27:22 +0900 | [diff] [blame] | 73 | <dependency> |
| 74 | <groupId>org.onap.appc</groupId> |
| 75 | <artifactId>appc-ssh-adapter-api</artifactId> |
| 76 | <version>1.3.0</version> |
| 77 | <scope>provided</scope> |
| 78 | </dependency> |
Ganesh Chandrasekaran | 8fe9122 | 2018-06-28 17:39:09 +0900 | [diff] [blame] | 79 | |
Ganesh Chandrasekaran | 021cae4 | 2018-07-23 14:27:22 +0900 | [diff] [blame] | 80 | <!-- Needed to run test cases --> |
Ganesh Chandrasekaran | 43090d8 | 2018-07-04 14:10:57 +0900 | [diff] [blame] | 81 | |
Ganesh Chandrasekaran | 021cae4 | 2018-07-23 14:27:22 +0900 | [diff] [blame] | 82 | <dependency> |
| 83 | <groupId>org.apache.commons</groupId> |
| 84 | <artifactId>commons-io</artifactId> |
| 85 | <version>1.3.2</version> |
| 86 | </dependency> |
Ganesh Chandrasekaran | 43090d8 | 2018-07-04 14:10:57 +0900 | [diff] [blame] | 87 | |
Ganesh Chandrasekaran | 021cae4 | 2018-07-23 14:27:22 +0900 | [diff] [blame] | 88 | <dependency> |
| 89 | <groupId>org.codehaus.jettison</groupId> |
| 90 | <artifactId>jettison</artifactId> |
Ganesh Chandrasekaran | 021cae4 | 2018-07-23 14:27:22 +0900 | [diff] [blame] | 91 | </dependency> |
Ganesh Chandrasekaran | 8fe9122 | 2018-06-28 17:39:09 +0900 | [diff] [blame] | 92 | |
Ganesh Chandrasekaran | 021cae4 | 2018-07-23 14:27:22 +0900 | [diff] [blame] | 93 | <dependency> |
| 94 | <groupId>junit</groupId> |
| 95 | <artifactId>junit</artifactId> |
| 96 | <scope>test</scope> |
| 97 | </dependency> |
Ganesh Chandrasekaran | e8b4238 | 2018-08-24 09:05:12 +0900 | [diff] [blame^] | 98 | |
Ganesh Chandrasekaran | 021cae4 | 2018-07-23 14:27:22 +0900 | [diff] [blame] | 99 | <dependency> |
| 100 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 101 | <artifactId>sli-common</artifactId> |
| 102 | </dependency> |
Ganesh Chandrasekaran | 8fe9122 | 2018-06-28 17:39:09 +0900 | [diff] [blame] | 103 | |
Ganesh Chandrasekaran | 021cae4 | 2018-07-23 14:27:22 +0900 | [diff] [blame] | 104 | <dependency> |
| 105 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 106 | <artifactId>sli-provider</artifactId> |
| 107 | </dependency> |
Ganesh Chandrasekaran | 8fe9122 | 2018-06-28 17:39:09 +0900 | [diff] [blame] | 108 | |
Ganesh Chandrasekaran | 021cae4 | 2018-07-23 14:27:22 +0900 | [diff] [blame] | 109 | <dependency> |
| 110 | <groupId>org.json</groupId> |
| 111 | <artifactId>json</artifactId> |
| 112 | </dependency> |
Ganesh Chandrasekaran | 8fe9122 | 2018-06-28 17:39:09 +0900 | [diff] [blame] | 113 | |
Ganesh Chandrasekaran | 021cae4 | 2018-07-23 14:27:22 +0900 | [diff] [blame] | 114 | </dependencies> |
Ganesh Chandrasekaran | 8fe9122 | 2018-06-28 17:39:09 +0900 | [diff] [blame] | 115 | |
Ganesh Chandrasekaran | 8fe9122 | 2018-06-28 17:39:09 +0900 | [diff] [blame] | 116 | </project> |