Merge "Fix namespaces for dpdk yang files"
[ovsdb.git] / plugin / 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   <parent>
5     <groupId>org.opendaylight.ovsdb</groupId>
6     <artifactId>commons</artifactId>
7     <version>1.3.0-SNAPSHOT</version>
8     <relativePath>../commons/parent</relativePath>
9   </parent>
10
11   <artifactId>plugin</artifactId>
12   <version>1.1.0-SNAPSHOT</version>
13   <name>OpenDaylight OVSDB Plugin</name>
14   <packaging>bundle</packaging>
15
16   <dependencies>
17     <dependency>
18       <groupId>com.fasterxml.jackson.core</groupId>
19       <artifactId>jackson-databind</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>com.google.guava</groupId>
23       <artifactId>guava</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>commons-collections</groupId>
27       <artifactId>commons-collections</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>equinoxSDK381</groupId>
31       <artifactId>org.eclipse.osgi</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>io.netty</groupId>
35       <artifactId>netty-all</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>junit</groupId>
39       <artifactId>junit</artifactId>
40       <scope>test</scope>
41     </dependency>
42     <dependency>
43       <groupId>org.apache.felix</groupId>
44       <artifactId>org.apache.felix.dependencymanager</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>sal</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.ovsdb</groupId>
52       <artifactId>library</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.ovsdb</groupId>
56       <artifactId>schema.openvswitch</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.ovsdb</groupId>
60       <artifactId>utils.config</artifactId>
61       <version>${ovsdb.utils.config.version}</version>
62     </dependency>
63     <dependency>
64       <groupId>org.slf4j</groupId>
65       <artifactId>slf4j-api</artifactId>
66     </dependency>
67   </dependencies>
68
69   <build>
70     <testResources>
71       <testResource>
72         <filtering>true</filtering>
73         <directory>src/test/resources</directory>
74       </testResource>
75     </testResources>
76     <plugins>
77       <plugin>
78         <groupId>org.apache.felix</groupId>
79         <artifactId>maven-bundle-plugin</artifactId>
80         <version>2.4.0</version>
81         <extensions>true</extensions>
82         <configuration>
83           <instructions>
84             <Embed-Dependency>commons-codec,javax.servlet-api,portlet-api,commons-collections,utils.config;type=!pom;inline=false</Embed-Dependency>
85             <Embed-Transitive>true</Embed-Transitive>
86             <Bundle-Activator>org.opendaylight.ovsdb.plugin.internal.Activator</Bundle-Activator>
87             <Private-Package>
88               org.opendaylight.ovsdb.plugin.impl,
89               org.opendaylight.ovsdb.plugin.internal
90             </Private-Package>
91             <Export-Package>
92               org.opendaylight.ovsdb.plugin,
93               org.opendaylight.ovsdb.plugin.api,
94               org.opendaylight.ovsdb.plugin.error
95             </Export-Package>
96           </instructions>
97           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
98         </configuration>
99       </plugin>
100       <plugin>
101         <groupId>org.apache.maven.plugins</groupId>
102         <artifactId>maven-checkstyle-plugin</artifactId>
103       </plugin>
104       <plugin>
105         <groupId>org.apache.maven.plugins</groupId>
106         <artifactId>maven-failsafe-plugin</artifactId>
107       </plugin>
108       <plugin>
109         <groupId>org.jacoco</groupId>
110         <artifactId>jacoco-maven-plugin</artifactId>
111       </plugin>
112     </plugins>
113   </build>
114   <scm>
115     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
116     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
117     <tag>HEAD</tag>
118     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
119   </scm>
120 </project>