Compile against Fluorine SR2
[ccsdk/features.git] / sdnr / wt / odlux / core / model / 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-model</artifactId>
7     <version>0.4.2-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.2.2-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
24     <dependencies>
25         <dependency>
26             <groupId>org.osgi</groupId>
27             <artifactId>org.osgi.core</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.osgi</groupId>
31             <artifactId>org.osgi.compendium</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.slf4j</groupId>
35             <artifactId>slf4j-api</artifactId>
36         </dependency>
37
38     </dependencies>
39     <build>
40         <plugins>
41             <plugin>
42                 <groupId>org.apache.felix</groupId>
43                 <artifactId>maven-bundle-plugin</artifactId>
44                 <extensions>true</extensions>
45                 <configuration>
46                     <instructions>
47                         <Import-Package>*</Import-Package>
48                         <Export-Package>org.onap.ccsdk.features.sdnr.wt.odlux.*,com.opensymphony.*</Export-Package>
49                     </instructions>
50                 </configuration>
51             </plugin>
52         </plugins>
53     </build>
54 </project>