Remove unneeded dependencies
[l2switch.git] / loopremover / implementation / 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   <parent>
6     <groupId>org.opendaylight.l2switch</groupId>
7     <artifactId>l2switch-parent</artifactId>
8     <version>0.8.0-SNAPSHOT</version>
9     <relativePath>../../parent</relativePath>
10   </parent>
11   <modelVersion>4.0.0</modelVersion>
12
13   <groupId>org.opendaylight.l2switch.loopremover</groupId>
14   <artifactId>loopremover-impl</artifactId>
15
16   <packaging>bundle</packaging>
17
18   <dependencies>
19     <dependency>
20       <groupId>org.opendaylight.mdsal</groupId>
21       <artifactId>mdsal-binding-api</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.mdsal.model</groupId>
25       <artifactId>ietf-topology</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.openflowplugin.model</groupId>
29       <artifactId>model-flow-service</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller.model</groupId>
33       <artifactId>model-inventory</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.yangtools</groupId>
37       <artifactId>yang-common</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>net.sf.jung</groupId>
41       <artifactId>jung-api</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>net.sf.jung</groupId>
45       <artifactId>jung-algorithms</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>net.sf.jung</groupId>
49       <artifactId>jung-graph-impl</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.l2switch.loopremover</groupId>
53       <artifactId>loopremover-model</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.openflowplugin</groupId>
57       <artifactId>openflowplugin-api</artifactId>
58     </dependency>
59   </dependencies>
60
61   <build>
62     <plugins>
63       <plugin>
64         <groupId>org.apache.felix</groupId>
65         <artifactId>maven-bundle-plugin</artifactId>
66         <extensions>true</extensions>
67         <configuration>
68           <instructions>
69             <Export-Package>org.apache.commons*,
70               edu.uci.ics.jung.algorithms.blockmodel,
71               edu.uci.ics.jung.algorithms.cluster,
72               edu.uci.ics.jung.algorithms.filters,
73               edu.uci.ics.jung.algorithms.flows,
74               edu.uci.ics.jung.algorithms.generators,
75               edu.uci.ics.jung.algorithms.generators.random,
76               edu.uci.ics.jung.algorithms.layout,
77               edu.uci.ics.jung.algorithms.layout.util,
78               edu.uci.ics.jung.algorithms.metrics,
79               edu.uci.ics.jung.algorithms.scoring,
80               edu.uci.ics.jung.algorithms.scoring.util,
81               edu.uci.ics.jung.algorithms.shortestpath,
82               edu.uci.ics.jung.algorithms.transformation,
83               edu.uci.ics.jung.algorithms.util,
84               edu.uci.ics.jung.graph;-split-package:=merge-first,
85               edu.uci.ics.jung.graph.event,
86               edu.uci.ics.jung.graph.util;-split-package:=merge-first,
87               org.opendaylight.yang.gen.v1.urn.opendaylight.packet.loop.remover.impl.rev140528</Export-Package>
88             <Import-Package>,
89               *</Import-Package>
90           </instructions>
91         </configuration>
92       </plugin>
93     </plugins>
94   </build>
95
96 </project>