blob: c64dace5f002f854bfa34ad2599a701edd89756b [file] [log] [blame]
Sandeep Shah8ee521e2019-11-02 05:05:25 -05001<?xml version="1.0" encoding="UTF-8"?>
Timoney, Dan (dt5972)b511df02019-11-13 10:49:18 -05002<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">
Sandeep Shah8ee521e2019-11-02 05:05:25 -05003 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>binding-parent</artifactId>
Dan Timoney49035452020-01-30 09:53:35 -05008 <version>1.5.2-SNAPSHOT</version>
Sandeep Shah8ee521e2019-11-02 05:05:25 -05009 <relativePath/>
10 </parent>
11
12 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
13 <artifactId>a1Adapter-provider</artifactId>
Dan Timoney49035452020-01-30 09:53:35 -050014 <version>0.7.1-SNAPSHOT</version>
Sandeep Shah8ee521e2019-11-02 05:05:25 -050015 <packaging>bundle</packaging>
16
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050017 <name>ccsdk-features :: sdnr-northbound :: ${project.artifactId}</name>
18
Timoney, Dan (dt5972)03c25f02019-11-21 10:03:30 -050019 <properties>
20 <ccsdk.sli.core.version>${project.version}</ccsdk.sli.core.version>
21 </properties>
22
Sandeep Shah8ee521e2019-11-02 05:05:25 -050023 <dependencyManagement>
24 <dependencies>
25 <dependency>
26 <groupId>org.opendaylight.controller</groupId>
27 <artifactId>mdsal-artifacts</artifactId>
28 <version>1.6.1</version>
29 <type>pom</type>
30 <scope>import</scope>
31 </dependency>
32
33 <dependency>
34 <groupId>org.onap.ccsdk.sli.core</groupId>
35 <artifactId>sli-core-artifacts</artifactId>
36 <version>${ccsdk.sli.core.version}</version>
37 <type>pom</type>
38 <scope>import</scope>
39 </dependency>
40
41 </dependencies>
42 </dependencyManagement>
Sandeep Shah8ee521e2019-11-02 05:05:25 -050043 <dependencies>
44 <dependency>
45 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
46 <artifactId>a1Adapter-model</artifactId>
47 <version>${project.version}</version>
48 </dependency>
49 <!--
50 <dependency>
51 <groupId>org.opendaylight.controller</groupId>
52 <artifactId>sal-binding-config</artifactId>
53 </dependency>
54 -->
55 <dependency>
56 <groupId>org.opendaylight.controller</groupId>
57 <artifactId>sal-binding-api</artifactId>
58 </dependency>
59 <dependency>
60 <groupId>org.opendaylight.controller</groupId>
61 <artifactId>sal-common-util</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>org.opendaylight.controller</groupId>
65 <artifactId>sal-core-api</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>org.opendaylight.yangtools</groupId>
69 <artifactId>yang-data-impl</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>junit</groupId>
73 <artifactId>junit</artifactId>
74 <scope>test</scope>
75 </dependency>
76 <dependency>
77 <groupId>org.mockito</groupId>
78 <artifactId>mockito-core</artifactId>
79 <scope>test</scope>
80 </dependency>
Sandeep Shah8ee521e2019-11-02 05:05:25 -050081 <dependency>
82 <groupId>org.onap.ccsdk.sli.core</groupId>
83 <artifactId>sli-common</artifactId>
84 <scope>provided</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.onap.ccsdk.sli.core</groupId>
88 <artifactId>sli-provider</artifactId>
89 <scope>provided</scope>
90 </dependency>
91 <dependency>
92 <groupId>org.onap.ccsdk.sli.core</groupId>
93 <artifactId>utils-provider</artifactId>
94 <!-- <version>${sdnctl.sli.version}</version> -->
95 </dependency>
96
Sandeep Shah8ee521e2019-11-02 05:05:25 -050097 </dependencies>
98
99 <build>
100 <pluginManagement>
101 <plugins>
102 <plugin>
103 <groupId>org.eclipse.m2e</groupId>
104 <artifactId>lifecycle-mapping</artifactId>
105 <version>1.0.0</version>
106 <configuration>
107 <lifecycleMappingMetadata>
108 <pluginExecutions>
109 <pluginExecution>
110 <pluginExecutionFilter>
111 <groupId>org.codehaus.mojo</groupId>
112 <artifactId>properties-maven-plugin</artifactId>
113 <versionRange>[1.0.0,)</versionRange>
114 <goals>
115 <goal>set-system-properties</goal>
116 </goals>
117 </pluginExecutionFilter>
118 <action>
119 <execute/>
120 </action>
121 </pluginExecution>
122 </pluginExecutions>
123 </lifecycleMappingMetadata>
124 </configuration>
125 </plugin>
126 </plugins>
127 </pluginManagement>
128 </build>
Sandeep Shah8ee521e2019-11-02 05:05:25 -0500129</project>