Use 1.5.1-SNAPSHOT version of 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.1-SNAPSHOT</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     <properties>
18         <ccsdk.sli.core.version>${project.version}</ccsdk.sli.core.version>
19     </properties>
20
21     <dependencyManagement>
22         <dependencies>
23             <dependency>
24                 <groupId>org.opendaylight.controller</groupId>
25                 <artifactId>mdsal-artifacts</artifactId>
26                 <version>1.6.1</version>
27                 <type>pom</type>
28                 <scope>import</scope>
29             </dependency>
30
31             <dependency>
32                 <groupId>org.onap.ccsdk.sli.core</groupId>
33                 <artifactId>sli-core-artifacts</artifactId>
34                 <version>${ccsdk.sli.core.version}</version>
35                 <type>pom</type>
36                 <scope>import</scope>
37             </dependency>
38
39         </dependencies>
40     </dependencyManagement>
41
42
43     <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>
81
82         <dependency>
83             <groupId>org.onap.ccsdk.sli.core</groupId>
84             <artifactId>sli-common</artifactId>
85             <scope>provided</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.onap.ccsdk.sli.core</groupId>
89             <artifactId>sli-provider</artifactId>
90             <scope>provided</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.onap.ccsdk.sli.core</groupId>
94             <artifactId>utils-provider</artifactId>
95             <!-- <version>${sdnctl.sli.version}</version> -->
96         </dependency>
97
98
99     </dependencies>
100
101     <build>
102         <pluginManagement>
103             <plugins>
104                 <plugin>
105                     <groupId>org.eclipse.m2e</groupId>
106                     <artifactId>lifecycle-mapping</artifactId>
107                     <version>1.0.0</version>
108                     <configuration>
109                         <lifecycleMappingMetadata>
110                             <pluginExecutions>
111                                 <pluginExecution>
112                                     <pluginExecutionFilter>
113                                         <groupId>org.codehaus.mojo</groupId>
114                                         <artifactId>properties-maven-plugin</artifactId>
115                                         <versionRange>[1.0.0,)</versionRange>
116                                         <goals>
117                                             <goal>set-system-properties</goal>
118                                         </goals>
119                                     </pluginExecutionFilter>
120                                     <action>
121                                         <execute/>
122                                     </action>
123                                 </pluginExecution>
124                             </pluginExecutions>
125                         </lifecycleMappingMetadata>
126                     </configuration>
127                 </plugin>
128             </plugins>
129         </pluginManagement>
130     </build>
131
132 </project>