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) | d5f883f | 2019-04-30 11:54:52 -0400 | [diff] [blame] | 8 | <version>1.3.0-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) | d5f883f | 2019-04-30 11:54:52 -0400 | [diff] [blame] | 13 | <version>0.5.0-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> |
Timoney, Dan (dt5972) | 057bc26 | 2019-01-04 09:22:20 -0500 | [diff] [blame] | 17 | |
| 18 | <dependencyManagement> |
| 19 | <dependencies> |
| 20 | <dependency> |
| 21 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 22 | <artifactId>sli-core-artifacts</artifactId> |
| 23 | <version>${ccsdk.sli.core.version}</version> |
| 24 | <type>pom</type> |
| 25 | <scope>import</scope> |
| 26 | </dependency> |
| 27 | </dependencies> |
| 28 | </dependencyManagement> |
Ganesh Chandrasekaran | d6a56cd | 2018-07-19 11:17:06 +0900 | [diff] [blame] | 29 | |
| 30 | <dependencies> |
| 31 | <dependency> |
| 32 | <groupId>junit</groupId> |
| 33 | <artifactId>junit</artifactId> |
| 34 | <scope>test</scope> |
| 35 | </dependency> |
| 36 | <dependency> |
Ganesh Chandrasekaran | d6a56cd | 2018-07-19 11:17:06 +0900 | [diff] [blame] | 37 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 38 | <artifactId>sli-common</artifactId> |
Smokowski, Kevin (ks6305) | bc136f3 | 2019-05-29 21:25:31 +0000 | [diff] [blame^] | 39 | <scope>provided</scope> |
Ganesh Chandrasekaran | d6a56cd | 2018-07-19 11:17:06 +0900 | [diff] [blame] | 40 | </dependency> |
Timoney, Dan (dt5972) | bd8a4d0 | 2019-06-21 17:22:27 -0400 | [diff] [blame] | 41 | <!-- ILLEGAL DEPENDENCY : creates circular dependency between CCSDK and APPC --> |
Ganesh Chandrasekaran | d6a56cd | 2018-07-19 11:17:06 +0900 | [diff] [blame] | 42 | <dependency> |
Ganesh Chandrasekaran | 8b39ca9 | 2018-07-24 16:40:14 +0900 | [diff] [blame] | 43 | <groupId>org.onap.appc</groupId> |
| 44 | <artifactId>appc-ssh-adapter-api</artifactId> |
| 45 | <version>1.3.0</version> |
| 46 | <scope>provided</scope> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.json</groupId> |
| 50 | <artifactId>json</artifactId> |
| 51 | </dependency> |
| 52 | <dependency> |
Ganesh Chandrasekaran | d6a56cd | 2018-07-19 11:17:06 +0900 | [diff] [blame] | 53 | <groupId>org.codehaus.jettison</groupId> |
| 54 | <artifactId>jettison</artifactId> |
| 55 | </dependency> |
gaurav | c29034a | 2018-08-14 16:55:13 +0530 | [diff] [blame] | 56 | <dependency> |
| 57 | <groupId>com.att.eelf</groupId> |
| 58 | <artifactId>eelf-core</artifactId> |
| 59 | </dependency> |
Ganesh Chandrasekaran | d6a56cd | 2018-07-19 11:17:06 +0900 | [diff] [blame] | 60 | </dependencies> |
| 61 | </project> |