Use 1.5.0 parent pom
[ccsdk/features.git] / sdnr / northbound / a1Adapter / provider / pom.xml
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>
8         <version>1.5.0</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
13     <artifactId>a1Adapter-provider</artifactId>
14     <version>0.7.0-SNAPSHOT</version>
15     <packaging>bundle</packaging>
16
17     <dependencyManagement>
18         <dependencies>
19             <dependency>
20                 <groupId>org.opendaylight.controller</groupId>
21                 <artifactId>mdsal-artifacts</artifactId>
22                 <version>1.6.1</version>
23                 <type>pom</type>
24                 <scope>import</scope>
25             </dependency>
26
27             <dependency>
28                 <groupId>org.onap.ccsdk.sli.core</groupId>
29                 <artifactId>sli-core-artifacts</artifactId>
30                 <version>${ccsdk.sli.core.version}</version>
31                 <type>pom</type>
32                 <scope>import</scope>
33             </dependency>
34
35         </dependencies>
36     </dependencyManagement>
37
38
39     <dependencies>
40         <dependency>
41             <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
42             <artifactId>a1Adapter-model</artifactId>
43             <version>${project.version}</version>
44         </dependency>
45         <!--
46         <dependency>
47           <groupId>org.opendaylight.controller</groupId>
48           <artifactId>sal-binding-config</artifactId>
49         </dependency>
50         -->
51         <dependency>
52             <groupId>org.opendaylight.controller</groupId>
53             <artifactId>sal-binding-api</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.controller</groupId>
57             <artifactId>sal-common-util</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.controller</groupId>
61             <artifactId>sal-core-api</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.yangtools</groupId>
65             <artifactId>yang-data-impl</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>junit</groupId>
69             <artifactId>junit</artifactId>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.mockito</groupId>
74             <artifactId>mockito-core</artifactId>
75             <scope>test</scope>
76         </dependency>
77
78         <dependency>
79             <groupId>org.onap.ccsdk.sli.core</groupId>
80             <artifactId>sli-common</artifactId>
81             <scope>provided</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.onap.ccsdk.sli.core</groupId>
85             <artifactId>sli-provider</artifactId>
86             <scope>provided</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.onap.ccsdk.sli.core</groupId>
90             <artifactId>utils-provider</artifactId>
91             <!-- <version>${sdnctl.sli.version}</version> -->
92         </dependency>
93
94
95     </dependencies>
96
97     <build>
98         <pluginManagement>
99             <plugins>
100                 <plugin>
101                     <groupId>org.eclipse.m2e</groupId>
102                     <artifactId>lifecycle-mapping</artifactId>
103                     <version>1.0.0</version>
104                     <configuration>
105                         <lifecycleMappingMetadata>
106                             <pluginExecutions>
107                                 <pluginExecution>
108                                     <pluginExecutionFilter>
109                                         <groupId>org.codehaus.mojo</groupId>
110                                         <artifactId>properties-maven-plugin</artifactId>
111                                         <versionRange>[1.0.0,)</versionRange>
112                                         <goals>
113                                             <goal>set-system-properties</goal>
114                                         </goals>
115                                     </pluginExecutionFilter>
116                                     <action>
117                                         <execute/>
118                                     </action>
119                                 </pluginExecution>
120                             </pluginExecutions>
121                         </lifecycleMappingMetadata>
122                     </configuration>
123                 </plugin>
124             </plugins>
125         </pluginManagement>
126     </build>
127
128 </project>