Merge "Remove unnecessary warn log from config subsystem"
[controller.git] / third-party / com.siemens.ct.exi / 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/maven-v4_0_0.xsd">
3   <!-- Get some common settings for the project we are using it in -->
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>commons.thirdparty</artifactId>
7     <version>1.1.1-SNAPSHOT</version>
8     <relativePath>../commons/thirdparty</relativePath>
9   </parent>
10   <scm>
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
14     <tag>HEAD</tag>
15   </scm>
16
17   <modelVersion>4.0.0</modelVersion>
18   <groupId>org.opendaylight.controller.thirdparty</groupId>
19   <artifactId>exificient</artifactId>
20   <version>0.9.2-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22   <build>
23     <plugins>
24       <plugin>
25         <groupId>org.apache.felix</groupId>
26         <artifactId>maven-bundle-plugin</artifactId>
27         <version>2.3.6</version>
28         <extensions>true</extensions>
29         <configuration>
30           <instructions>
31             <Embed-Dependency>*;scope=!provided;type=!pom;inline=false</Embed-Dependency>
32             <Embed-Transitive>false</Embed-Transitive>
33             <Export-Package>
34               com.siemens.ct.exi.*,
35             </Export-Package>
36             <Import-Package>
37                 javax.xml.namespace,
38                 javax.xml.parsers,
39                 javax.xml.stream,
40                 javax.xml.stream.events,
41                 javax.xml.transform.sax,
42                 org.apache.xerces.impl.xs,
43                 org.apache.xerces.impl.xs.models,
44                 org.apache.xerces.xni,
45                 org.apache.xerces.xni.grammars,
46                 org.apache.xerces.xni.parser,
47                 org.apache.xerces.xs,
48                 org.w3c.dom,
49                 org.xml.sax,
50                 org.xml.sax.ext,
51                 org.xml.sax.helpers
52             </Import-Package>
53           </instructions>
54           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
55         </configuration>
56       </plugin>
57     </plugins>
58   </build>
59
60
61   <dependencies>
62     <dependency>
63         <groupId>com.siemens.ct.exi</groupId>
64         <artifactId>exificient</artifactId>
65         <version>0.9.2</version>
66     </dependency>
67   </dependencies>
68
69 </project>