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