ORAN A1 Adapter YANG Model Update
[ccsdk/features.git] / sdnr / wt / odlux / core / 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</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
13     <artifactId>sdnr-wt-odlux-core-provider</artifactId>
14     <version>0.7.0-SNAPSHOT</version>
15     <packaging>bundle</packaging>
16
17     <name>ccsdk-features :: ${project.artifactId}</name>
18     <licenses>
19         <license>
20             <name>Apache License, Version 2.0</name>
21             <url>http://www.apache.org/licenses/LICENSE-2.0</url>
22         </license>
23     </licenses>
24
25     <dependencies>
26         <dependency>
27             <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
28             <artifactId>sdnr-wt-odlux-core-model</artifactId>
29             <version>${project.version}</version>
30         </dependency>
31         <dependency>
32             <groupId>${project.groupId}</groupId>
33             <artifactId>sdnr-wt-odlux-framework</artifactId>
34             <version>${project.version}</version>
35         </dependency>
36         <dependency>
37             <groupId>org.eclipse.jetty</groupId>
38             <artifactId>jetty-server</artifactId>
39             <scope>test</scope>
40         </dependency>
41
42         <dependency>
43             <groupId>org.osgi</groupId>
44             <artifactId>org.osgi.core</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.osgi</groupId>
48             <artifactId>org.osgi.compendium</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.slf4j</groupId>
52             <artifactId>slf4j-api</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>com.google.guava</groupId>
56             <artifactId>guava</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>javax.servlet</groupId>
60             <artifactId>javax.servlet-api</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.mockito</groupId>
64             <artifactId>mockito-core</artifactId>
65             <scope>test</scope>
66         </dependency>
67         <dependency>
68             <groupId>junit</groupId>
69             <artifactId>junit</artifactId>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.slf4j</groupId>
74             <artifactId>slf4j-simple</artifactId>
75             <scope>test</scope>
76         </dependency>
77     </dependencies>
78
79     <build>
80         <plugins>
81             <plugin>
82                 <groupId>org.apache.maven.plugins</groupId>
83                 <artifactId>maven-compiler-plugin</artifactId>
84                 <configuration>
85                     <source>1.8</source>
86                     <target>1.8</target>
87                 </configuration>
88             </plugin>
89             <plugin>
90                 <artifactId>maven-checkstyle-plugin</artifactId>
91                 <configuration>
92                     <skip>true</skip>
93                 </configuration>
94             </plugin>
95             <plugin>
96                 <groupId>org.apache.felix</groupId>
97                 <artifactId>maven-bundle-plugin</artifactId>
98                 <extensions>true</extensions>
99                 <configuration>
100                     <instructions>
101                         <Import-Package>org.onap.ccsdk.features.sdnr.wt.odlux.*;resolution:=optional,*;
102                         </Import-Package>
103                         <Embed-Dependency>sdnr-wt-odlux-framework;inline=true</Embed-Dependency>
104                         <Embed-Transitive>true</Embed-Transitive>
105                         <Export-Package>${project.groupId}.*</Export-Package>
106                     </instructions>
107                 </configuration>
108             </plugin>
109         </plugins>
110     </build>
111 </project>