Merge "SDN-R helpserver show version info"
[ccsdk/features.git] / sdnr / wt / odlux / core / provider / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4         <modelVersion>4.0.0</modelVersion>
5
6         <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
7         <artifactId>sdnr-wt-odlux-core-provider</artifactId>
8         <version>0.4.1-SNAPSHOT</version>
9         <name>ccsdk-features-sdnr-wt :: ${project.artifactId}</name>
10         <packaging>bundle</packaging>
11
12         <parent>
13                 <groupId>org.onap.ccsdk.parent</groupId>
14                 <artifactId>binding-parent</artifactId>
15                 <version>1.2.1-SNAPSHOT</version>
16                 <relativePath />
17         </parent>
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         <dependencies>
25                 <dependency>
26                         <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
27                         <artifactId>sdnr-wt-odlux-core-model</artifactId>
28                         <version>${project.version}</version>
29                 </dependency>
30                 <dependency>
31                         <groupId>${project.groupId}</groupId>
32                         <artifactId>sdnr-wt-odlux-framework</artifactId>
33                         <version>${project.version}</version>
34                 </dependency>
35                 <dependency>
36                         <groupId>org.eclipse.jetty</groupId>
37                         <artifactId>jetty-server</artifactId>
38                         <scope>test</scope>
39                 </dependency>
40
41                 <dependency>
42                         <groupId>org.osgi</groupId>
43                         <artifactId>org.osgi.core</artifactId>
44                 </dependency>
45                 <dependency>
46                         <groupId>org.osgi</groupId>
47                         <artifactId>org.osgi.compendium</artifactId>
48                 </dependency>
49                 <dependency>
50                         <groupId>org.slf4j</groupId>
51                         <artifactId>slf4j-api</artifactId>
52                 </dependency>
53                 <dependency>
54                         <groupId>com.google.guava</groupId>
55                         <artifactId>guava</artifactId>
56                 </dependency>
57                 <dependency>
58                         <groupId>javax.servlet</groupId>
59                         <artifactId>javax.servlet-api</artifactId>
60                 </dependency>
61                                 <dependency>
62                         <groupId>org.mockito</groupId>
63                         <artifactId>mockito-core</artifactId>
64                         <scope>test</scope>
65                 </dependency>
66                 <dependency>
67                         <groupId>junit</groupId>
68                         <artifactId>junit</artifactId>
69                         <scope>test</scope>
70                 </dependency>
71                 <dependency>
72                         <groupId>org.slf4j</groupId>
73                         <artifactId>slf4j-simple</artifactId>
74                         <scope>test</scope>
75                 </dependency>
76         </dependencies>
77         <build>
78                 <plugins>
79                         <plugin>
80                                 <groupId>org.apache.maven.plugins</groupId>
81                                 <artifactId>maven-compiler-plugin</artifactId>
82                                 <configuration>
83                                         <source>1.8</source>
84                                         <target>1.8</target>
85                                 </configuration>
86                         </plugin>
87                         <plugin>
88                                 <artifactId>maven-checkstyle-plugin</artifactId>
89                                 <configuration>
90                                         <skip>true</skip>
91                                 </configuration>
92                         </plugin>
93                         <plugin>
94                                 <groupId>org.apache.felix</groupId>
95                                 <artifactId>maven-bundle-plugin</artifactId>
96                                 <extensions>true</extensions>
97                                 <configuration>
98                                         <instructions>
99                                                 <Import-Package>org.onap.ccsdk.features.sdnr.wt.odlux.*;resolution:=optional,*;
100                                                 </Import-Package>
101                                                 <Embed-Dependency>sdnr-wt-odlux-framework;inline=true</Embed-Dependency>
102                                                 <Embed-Transitive>true</Embed-Transitive>
103                                                 <Export-Package>${project.groupId}.*</Export-Package>
104                                         </instructions>
105                                 </configuration>
106                         </plugin>
107                 </plugins>
108         </build>
109 </project>