Ganesh Chandrasekaran | d6a56cd | 2018-07-19 11:17:06 +0900 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <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"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | <parent> |
| 6 | <groupId>org.onap.ccsdk.parent</groupId> |
| 7 | <artifactId>binding-parent</artifactId> |
Timoney, Dan (dt5972) | 057bc26 | 2019-01-04 09:22:20 -0500 | [diff] [blame^] | 8 | <version>1.2.1-SNAPSHOT</version> |
Ganesh Chandrasekaran | d6a56cd | 2018-07-19 11:17:06 +0900 | [diff] [blame] | 9 | </parent> |
| 10 | |
| 11 | <groupId>org.onap.ccsdk.sli.plugins</groupId> |
| 12 | <artifactId>sshapi-call-node-provider</artifactId> |
Timoney, Dan (dt5972) | 057bc26 | 2019-01-04 09:22:20 -0500 | [diff] [blame^] | 13 | <version>0.4.1-SNAPSHOT</version> |
Ganesh Chandrasekaran | d6a56cd | 2018-07-19 11:17:06 +0900 | [diff] [blame] | 14 | <packaging>bundle</packaging> |
| 15 | |
| 16 | <name>ccsdk-sli-plugins :: sshapi-call-node :: ${project.artifactId}</name> |
| 17 | <url>http://maven.apache.org</url> |
| 18 | |
| 19 | <properties> |
| 20 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 21 | </properties> |
Timoney, Dan (dt5972) | 057bc26 | 2019-01-04 09:22:20 -0500 | [diff] [blame^] | 22 | |
| 23 | <dependencyManagement> |
| 24 | <dependencies> |
| 25 | <dependency> |
| 26 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 27 | <artifactId>sli-core-artifacts</artifactId> |
| 28 | <version>${ccsdk.sli.core.version}</version> |
| 29 | <type>pom</type> |
| 30 | <scope>import</scope> |
| 31 | </dependency> |
| 32 | </dependencies> |
| 33 | </dependencyManagement> |
Ganesh Chandrasekaran | d6a56cd | 2018-07-19 11:17:06 +0900 | [diff] [blame] | 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>junit</groupId> |
| 38 | <artifactId>junit</artifactId> |
| 39 | <scope>test</scope> |
| 40 | </dependency> |
| 41 | <dependency> |
Ganesh Chandrasekaran | d6a56cd | 2018-07-19 11:17:06 +0900 | [diff] [blame] | 42 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 43 | <artifactId>sli-common</artifactId> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 47 | <artifactId>sli-provider</artifactId> |
| 48 | </dependency> |
| 49 | <dependency> |
Ganesh Chandrasekaran | 8b39ca9 | 2018-07-24 16:40:14 +0900 | [diff] [blame] | 50 | <groupId>org.onap.appc</groupId> |
| 51 | <artifactId>appc-ssh-adapter-api</artifactId> |
| 52 | <version>1.3.0</version> |
| 53 | <scope>provided</scope> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.json</groupId> |
| 57 | <artifactId>json</artifactId> |
| 58 | </dependency> |
| 59 | <dependency> |
Ganesh Chandrasekaran | d6a56cd | 2018-07-19 11:17:06 +0900 | [diff] [blame] | 60 | <groupId>org.codehaus.jettison</groupId> |
| 61 | <artifactId>jettison</artifactId> |
| 62 | </dependency> |
gaurav | c29034a | 2018-08-14 16:55:13 +0530 | [diff] [blame] | 63 | <dependency> |
| 64 | <groupId>com.att.eelf</groupId> |
| 65 | <artifactId>eelf-core</artifactId> |
| 66 | </dependency> |
Ganesh Chandrasekaran | d6a56cd | 2018-07-19 11:17:06 +0900 | [diff] [blame] | 67 | </dependencies> |
| 68 | </project> |