Refactoring POM as per tidy: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     <dependencies>
42         <dependency>
43             <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
44             <artifactId>a1Adapter-model</artifactId>
45             <version>${project.version}</version>
46         </dependency>
47         <!--
48         <dependency>
49           <groupId>org.opendaylight.controller</groupId>
50           <artifactId>sal-binding-config</artifactId>
51         </dependency>
52         -->
53         <dependency>
54             <groupId>org.opendaylight.controller</groupId>
55             <artifactId>sal-binding-api</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.controller</groupId>
59             <artifactId>sal-common-util</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.opendaylight.controller</groupId>
63             <artifactId>sal-core-api</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.yangtools</groupId>
67             <artifactId>yang-data-impl</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>junit</groupId>
71             <artifactId>junit</artifactId>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.mockito</groupId>
76             <artifactId>mockito-core</artifactId>
77             <scope>test</scope>
78         </dependency>
79
80         <dependency>
81             <groupId>org.onap.ccsdk.sli.core</groupId>
82             <artifactId>sli-common</artifactId>
83             <scope>provided</scope>
84         </dependency>
85         <dependency>
86             <groupId>org.onap.ccsdk.sli.core</groupId>
87             <artifactId>sli-provider</artifactId>
88             <scope>provided</scope>
89         </dependency>
90         <dependency>
91             <groupId>org.onap.ccsdk.sli.core</groupId>
92             <artifactId>utils-provider</artifactId>
93             <!-- <version>${sdnctl.sli.version}</version> -->
94         </dependency>
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 </project>