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