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