52d8eb5bd941e0e7e4d883da16152139e9c066bc
[sdnc/northbound.git] / generic-resource-api / 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>2.3.0-SNAPSHOT</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.sdnc.northbound</groupId>
13     <artifactId>generic-resource-api-provider</artifactId>
14     <version>2.3.0-SNAPSHOT</version>
15     <packaging>bundle</packaging>
16
17     <name>sdnc-northbound :: generic-resource-api :: ${project.artifactId}</name>
18
19     <properties>
20         <ccsdk.sli.version>1.4.0-SNAPSHOT</ccsdk.sli.version>
21     </properties>
22
23     <dependencies>
24         <dependency>
25             <groupId>org.onap.sdnc.northbound</groupId>
26             <artifactId>generic-resource-api-model-yang</artifactId>
27             <version>${project.version}</version>
28         </dependency>
29         <dependency>
30             <groupId>org.apache.commons</groupId>
31             <artifactId>commons-lang3</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.onap.ccsdk.sli.core</groupId>
35             <artifactId>sli-common</artifactId>
36             <version>${ccsdk.sli.version}</version>
37             <scope>provided</scope>
38         </dependency>
39         <dependency>
40             <groupId>org.onap.ccsdk.sli.core</groupId>
41             <artifactId>sli-provider</artifactId>
42             <version>${ccsdk.sli.version}</version>
43             <scope>provided</scope>
44         </dependency>
45
46         <dependency>
47             <groupId>org.opendaylight.mdsal</groupId>
48             <artifactId>mdsal-binding-api</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.mdsal</groupId>
52             <artifactId>mdsal-binding-test-model</artifactId>
53             <scope>test</scope>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.mdsal</groupId>
57             <artifactId>mdsal-binding-test-utils</artifactId>
58             <scope>test</scope>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.mdsal</groupId>
62             <artifactId>mdsal-binding-dom-adapter</artifactId>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>junit</groupId>
67             <artifactId>junit</artifactId>
68             <scope>test</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.mockito</groupId>
72             <artifactId>mockito-core</artifactId>
73             <scope>test</scope>
74         </dependency>
75     </dependencies>
76
77     <build>
78         <plugins>
79             <plugin>
80                 <artifactId>maven-compiler-plugin</artifactId>
81                 <configuration>
82                     <forceJavacCompilerUse>true</forceJavacCompilerUse>
83                 </configuration>
84             </plugin>
85         </plugins>
86     </build>
87 </project>