Eliminate explicit yangtools dependencies and pom cleanup
[openflowplugin.git] / openflowjava / openflow-protocol-impl / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <groupId>org.opendaylight.openflowplugin.openflowjava</groupId>
5         <artifactId>openflowjava-parent</artifactId>
6         <version>0.6.0-SNAPSHOT</version>
7         <relativePath>../</relativePath>
8     </parent>
9     <artifactId>openflow-protocol-impl</artifactId>
10     <packaging>bundle</packaging>
11     <!-- <name> formatting is used by autorelease to parse and notify projects on
12          build failure. Please do not modify this unless you have a good reason. -->
13     <name>ODL :: openflowjava :: ${project.artifactId}</name>
14     <scm>
15         <url>https://wiki.opendaylight.org/view/Openflow_Protocol_Library:Main</url>
16       <tag>HEAD</tag>
17   </scm>
18
19     <build>
20         <plugins>
21             <plugin>
22               <groupId>org.apache.felix</groupId>
23               <artifactId>maven-bundle-plugin</artifactId>
24               <extensions>true</extensions>
25               <configuration>
26                 <instructions>
27                     <Export-Package>
28                       org.opendaylight.openflowjava.protocol.impl.*,
29                     </Export-Package>
30                 </instructions>
31               </configuration>
32             </plugin>
33             <plugin>
34                 <groupId>org.apache.maven.plugins</groupId>
35                 <artifactId>maven-jar-plugin</artifactId>
36                 <executions>
37                     <execution>
38                         <goals>
39                             <goal>test-jar</goal>
40                         </goals>
41                     </execution>
42                 </executions>
43             </plugin>
44         </plugins>
45     </build>
46
47     <dependencies>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>openflow-protocol-api</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>openflow-protocol-spi</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>${project.groupId}</groupId>
58             <artifactId>openflowjava-util</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.controller</groupId>
62             <artifactId>sal-common-util</artifactId>
63             <exclusions>
64                 <exclusion>
65                     <groupId>org.opendaylight.controller</groupId>
66                     <artifactId>sal-common-api</artifactId>
67                 </exclusion>
68                 <exclusion>
69                     <groupId>org.opendaylight.yangtools</groupId>
70                     <artifactId>concepts</artifactId>
71                 </exclusion>
72             </exclusions>
73         </dependency>
74         <dependency>
75             <groupId>io.netty</groupId>
76             <artifactId>netty-handler</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.osgi</groupId>
80             <artifactId>org.osgi.core</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.slf4j</groupId>
84             <artifactId>slf4j-log4j12</artifactId>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>com.google.guava</groupId>
89             <artifactId>guava</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>junit</groupId>
93             <artifactId>junit</artifactId>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>org.mockito</groupId>
98             <artifactId>mockito-core</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>io.netty</groupId>
102             <artifactId>netty-transport-native-epoll</artifactId>
103             <!-- Explicitly bring in the linux classifier, test may fail on 32-bit linux -->
104             <classifier>linux-x86_64</classifier>
105         </dependency>
106     </dependencies>
107 </project>