Override sli core version
[ccsdk/features.git] / sdnr / northbound / oofpcipoc / 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>oofpcipoc-provider</artifactId>
14     <version>0.7.0-SNAPSHOT</version>
15     <packaging>bundle</packaging>
16
17
18     <properties>
19         <ccsdk.sli.core.version>${project.version}</ccsdk.sli.core.version>
20     </properties>
21
22
23     <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>
43
44
45     <dependencies>
46         <dependency>
47             <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
48             <artifactId>oofpcipoc-model</artifactId>
49             <version>${project.version}</version>
50         </dependency>
51         <!--
52         <dependency>
53           <groupId>org.opendaylight.controller</groupId>
54           <artifactId>sal-binding-config</artifactId>
55         </dependency>
56         -->
57         <dependency>
58             <groupId>org.opendaylight.controller</groupId>
59             <artifactId>sal-binding-api</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.controller</groupId>
63             <artifactId>sal-common-util</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.controller</groupId>
67             <artifactId>sal-core-api</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.yangtools</groupId>
71             <artifactId>yang-data-impl</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>junit</groupId>
75             <artifactId>junit</artifactId>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.mockito</groupId>
80             <artifactId>mockito-core</artifactId>
81             <scope>test</scope>
82         </dependency>
83
84         <dependency>
85             <groupId>org.onap.ccsdk.sli.core</groupId>
86             <artifactId>sli-common</artifactId>
87             <scope>provided</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.onap.ccsdk.sli.core</groupId>
91             <artifactId>sli-provider</artifactId>
92             <scope>provided</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.onap.ccsdk.sli.core</groupId>
96             <artifactId>utils-provider</artifactId>
97             <!-- <version>${sdnctl.sli.version}</version> -->
98         </dependency>
99
100
101     </dependencies>
102
103     <build>
104         <pluginManagement>
105             <plugins>
106                 <plugin>
107                     <groupId>org.eclipse.m2e</groupId>
108                     <artifactId>lifecycle-mapping</artifactId>
109                     <version>1.0.0</version>
110                     <configuration>
111                         <lifecycleMappingMetadata>
112                             <pluginExecutions>
113                                 <pluginExecution>
114                                     <pluginExecutionFilter>
115                                         <groupId>org.codehaus.mojo</groupId>
116                                         <artifactId>properties-maven-plugin</artifactId>
117                                         <versionRange>[1.0.0,)</versionRange>
118                                         <goals>
119                                             <goal>set-system-properties</goal>
120                                         </goals>
121                                     </pluginExecutionFilter>
122                                     <action>
123                                         <execute/>
124                                     </action>
125                                 </pluginExecution>
126                             </pluginExecutions>
127                         </lifecycleMappingMetadata>
128                     </configuration>
129                 </plugin>
130             </plugins>
131         </pluginManagement>
132     </build>
133
134 </project>