Mehreen Kaleem | d5ae320 | 2020-02-19 07:22:45 +0000 | [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> |
Dan Timoney | 9f0eab0 | 2020-08-21 12:20:42 -0400 | [diff] [blame] | 8 | <version>2.0.1-SNAPSHOT</version> |
Mehreen Kaleem | d5ae320 | 2020-02-19 07:22:45 +0000 | [diff] [blame] | 9 | <relativePath/> |
| 10 | </parent> |
| 11 | |
| 12 | <groupId>org.onap.sdnc.northbound</groupId> |
| 13 | <artifactId>optical-service-provider</artifactId> |
Dan Timoney | 9f0eab0 | 2020-08-21 12:20:42 -0400 | [diff] [blame] | 14 | <version>2.0.1-SNAPSHOT</version> |
Mehreen Kaleem | d5ae320 | 2020-02-19 07:22:45 +0000 | [diff] [blame] | 15 | <packaging>bundle</packaging> |
| 16 | |
| 17 | <name>sdnc-northbound :: optical-service :: ${project.artifactId}</name> |
| 18 | |
| 19 | <properties> |
| 20 | <sdnc.northbound.version>${project.version}</sdnc.northbound.version> |
| 21 | </properties> |
Dan Timoney | 8917e02 | 2020-04-28 14:58:11 -0400 | [diff] [blame] | 22 | |
Mehreen Kaleem | d5ae320 | 2020-02-19 07:22:45 +0000 | [diff] [blame] | 23 | <dependencyManagement> |
| 24 | <dependencies> |
| 25 | <dependency> |
Dan Timoney | 8917e02 | 2020-04-28 14:58:11 -0400 | [diff] [blame] | 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> |
Mehreen Kaleem | d5ae320 | 2020-02-19 07:22:45 +0000 | [diff] [blame] | 31 | </dependency> |
| 32 | </dependencies> |
| 33 | </dependencyManagement> |
Mehreen Kaleem | d5ae320 | 2020-02-19 07:22:45 +0000 | [diff] [blame] | 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>org.onap.sdnc.northbound</groupId> |
| 37 | <artifactId>optical-service-model</artifactId> |
| 38 | <version>${project.version}</version> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.opendaylight.controller</groupId> |
| 42 | <artifactId>sal-binding-api</artifactId> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 46 | <artifactId>sli-common</artifactId> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 50 | <artifactId>sli-provider</artifactId> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.osgi</groupId> |
| 54 | <artifactId>org.osgi.service.component.annotations</artifactId> |
| 55 | <version>1.4.0</version> |
| 56 | <scope>provided</scope> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>javax.servlet</groupId> |
| 60 | <artifactId>javax.servlet-api</artifactId> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.json</groupId> |
| 64 | <artifactId>json</artifactId> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.apache.velocity</groupId> |
| 68 | <artifactId>velocity-engine-core</artifactId> |
| 69 | <version>2.0</version> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>commons-codec</groupId> |
| 73 | <artifactId>commons-codec</artifactId> |
| 74 | <version>1.9</version> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.opendaylight.controller</groupId> |
| 78 | <artifactId>sal-test-model</artifactId> |
| 79 | <scope>test</scope> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>org.opendaylight.controller</groupId> |
| 83 | <artifactId>sal-binding-broker-impl</artifactId> |
| 84 | <scope>test</scope> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>org.opendaylight.controller</groupId> |
| 88 | <artifactId>sal-binding-broker-impl</artifactId> |
| 89 | <type>test-jar</type> |
| 90 | <classifier>tests</classifier> |
| 91 | <scope>test</scope> |
| 92 | </dependency> |
| 93 | <dependency> |
| 94 | <groupId>junit</groupId> |
| 95 | <artifactId>junit</artifactId> |
| 96 | <scope>test</scope> |
| 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>org.testng</groupId> |
| 100 | <artifactId>testng</artifactId> |
| 101 | <scope>test</scope> |
| 102 | </dependency> |
| 103 | <dependency> |
| 104 | <groupId>org.mockito</groupId> |
| 105 | <artifactId>mockito-core</artifactId> |
| 106 | <scope>test</scope> |
| 107 | </dependency> |
| 108 | </dependencies> |
Mehreen Kaleem | d5ae320 | 2020-02-19 07:22:45 +0000 | [diff] [blame] | 109 | </project> |