e27a690c1d9aac9fbc44d4e20a2ea38f01aa7380
[netvirt.git] / ovs-sfc / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <groupId>org.opendaylight.ovsdb</groupId>
8         <artifactId>commons</artifactId>
9         <version>1.2.0-SNAPSHOT</version>
10         <relativePath>../commons/parent</relativePath>
11     </parent>
12
13     <artifactId>ovs-sfc</artifactId>
14     <version>1.0.0-SNAPSHOT</version>
15     <name>Opendaylight OVS SFC Plugin</name>
16     <packaging>bundle</packaging>
17
18     <dependencies>
19         <dependency>
20             <groupId>junit</groupId>
21             <artifactId>junit</artifactId>
22             <scope>test</scope>
23         </dependency>
24         <dependency>
25             <groupId>org.opendaylight.controller</groupId>
26             <artifactId>sal</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.slf4j</groupId>
30             <artifactId>slf4j-api</artifactId>
31         </dependency>
32     </dependencies>
33
34     <build>
35         <plugins>
36             <plugin>
37                 <groupId>org.apache.felix</groupId>
38                 <artifactId>maven-bundle-plugin</artifactId>
39                 <version>2.3.6</version>
40                 <extensions>true</extensions>
41                 <configuration>
42                     <instructions>
43                         <Import-Package>
44                             org.opendaylight.controller.sal.core,
45                             org.slf4j
46                         </Import-Package>
47                         <Export-Package>
48                             org.opendaylight.ovsdb.ovssfc
49                         </Export-Package>
50                         <Bundle-Activator>org.opendaylight.ovsdb.ovssfc.internal.Activator</Bundle-Activator>
51                     </instructions>
52                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
53                 </configuration>
54             </plugin>
55             <plugin>
56                 <groupId>org.apache.maven.plugins</groupId>
57                 <artifactId>maven-checkstyle-plugin</artifactId>
58             </plugin>
59             <!--
60             <plugin>
61                 <groupId>org.apache.maven.plugins</groupId>
62                 <artifactId>maven-failsafe-plugin</artifactId>
63             </plugin>
64             <plugin>
65                 <groupId>org.apache.maven.plugins</groupId>
66                 <artifactId>maven-surefire-plugin</artifactId>
67             </plugin>
68             <plugin>
69                 <groupId>org.jacoco</groupId>
70                 <artifactId>jacoco-maven-plugin</artifactId>
71             </plugin>
72             -->
73         </plugins>
74     </build>
75
76     <scm>
77         <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
78         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
79         <tag>HEAD</tag>
80         <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
81     </scm>
82 </project>