Merge "Partial fix for bug 8. Fixing many generics-related warnings and some typos."
[controller.git] / opendaylight / web / topology / 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"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4         <modelVersion>4.0.0</modelVersion>
5         <parent>
6                 <groupId>org.opendaylight.controller</groupId>
7                 <artifactId>commons.opendaylight</artifactId>
8                 <version>1.4.0-SNAPSHOT</version>
9                 <relativePath>../../commons/opendaylight</relativePath>
10         </parent>
11         <groupId>org.opendaylight.controller</groupId>
12         <artifactId>topology.web</artifactId>
13         <version>0.4.0-SNAPSHOT</version>
14         <packaging>bundle</packaging>
15         <build>
16                 <plugins>
17                         <plugin>
18                                 <groupId>org.apache.felix</groupId>
19                                 <artifactId>maven-bundle-plugin</artifactId>
20                                 <version>2.3.6</version>
21                                 <extensions>true</extensions>
22                                 <configuration>
23                                         <instructions>
24                                                 <Export-Package>
25                                                 </Export-Package>
26                                                 <Import-Package>
27                                                         org.opendaylight.controller.containermanager,
28                                                         org.opendaylight.controller.sal.authorization,
29                                                         org.opendaylight.controller.sal.packet.address,
30                                                         org.opendaylight.controller.sal.action,
31                                                         org.opendaylight.controller.sal.core,
32                                                         org.opendaylight.controller.sal.utils,
33                                                         org.opendaylight.controller.switchmanager,
34                                                         org.opendaylight.controller.topologymanager,
35                                                         org.opendaylight.controller.usermanager,
36                                                         org.opendaylight.controller.web,
37                                                         com.google.gson,
38                                                         edu.uci.ics.jung.algorithms.layout,
39                                                         edu.uci.ics.jung.graph,
40                                                         javax.annotation,
41                                                         javax.naming,
42                                                         javax.servlet,
43                                                         javax.servlet.annotation,
44                                                         javax.servlet.http,
45                                                         javax.servlet.jsp,
46                                                         javax.servlet.jsp.el,
47                                                         javax.servlet.jsp.jstl.core,
48                                                         javax.servlet.jsp.jstl.fmt,
49                                                         javax.servlet.jsp.jstl.tlv,
50                                                         javax.servlet.jsp.tagext,
51                                                         javax.servlet.resources,
52                                                         javax.xml.parsers,
53                                                         javax.xml.transform,
54                                                         org.apache.commons.logging,
55                                                         org.apache.taglibs.standard.functions,
56                                                         org.apache.taglibs.standard.resources,
57                                                         org.apache.taglibs.standard.tag.common.core,
58                                                         org.apache.taglibs.standard.tag.common.fmt,
59                                                         org.apache.taglibs.standard.tag.rt.core,
60                                                         org.apache.taglibs.standard.tag.rt.fmt,
61                                                         org.apache.taglibs.standard.tei,
62                                                         org.apache.taglibs.standard.tlv,
63                                                         org.codehaus.jackson,
64                                                         org.codehaus.jackson.annotate,
65                                                         org.codehaus.jackson.map,
66                                                         org.codehaus.jackson.map.annotate,
67                                                         org.osgi.framework,
68                                                         org.slf4j,
69                                                         org.springframework.beans,
70                                                         org.springframework.beans.factory.xml,
71                                                         org.springframework.context.config,
72                                                         org.springframework.stereotype,
73                                                         org.springframework.util,
74                                                         org.springframework.web,
75                                                         org.springframework.web.bind.annotation,
76                                                         org.springframework.web.servlet,
77                                                         org.springframework.web.servlet.config,
78                                                         org.springframework.web.servlet.view,
79
80                                                         org.springframework.web.filter,
81                                                         org.springframework.web.context,
82                                                         org.springframework.security.core,
83                                                         org.springframework.security.core.userdetails,
84                                                         org.springframework.security.core.authority,
85                                                         org.springframework.security.core.context,
86                                                         org.springframework.security.authentication,
87                                                         org.springframework.security.config,
88                                                         org.springframework.security.config.authentication,
89                                                         org.springframework.security.taglibs.authz,
90                                                         org.springframework.security.web,
91                                                         org.springframework.security.web.context,
92                                                         org.springframework.security.web.authentication,
93                                                         org.springframework.security.web.authentication.www,
94                                                         org.springframework.security.provisioning,
95                                                         org.springframework.security.web.util,
96                                                         org.springframework.security.web.authentication.rememberme,
97                                                         org.springframework.security.web.authentication.logout,
98                                                         org.springframework.dao
99                                                 </Import-Package>
100                                                 <Web-ContextPath>/one/topology</Web-ContextPath>
101                                         </instructions>
102                                 </configuration>
103                         </plugin>
104                 </plugins>
105         </build>
106         <dependencies>
107                 <dependency>
108                         <groupId>org.opendaylight.controller.thirdparty</groupId>
109                         <artifactId>net.sf.jung2</artifactId>
110                         <version>2.0.1-SNAPSHOT</version>
111                 </dependency>
112                 <dependency>
113                         <groupId>org.opendaylight.controller</groupId>
114                         <artifactId>containermanager</artifactId>
115                         <version>0.4.0-SNAPSHOT</version>
116                 </dependency>
117                 <dependency>
118                         <groupId>org.opendaylight.controller</groupId>
119                         <artifactId>switchmanager</artifactId>
120                         <version>0.4.0-SNAPSHOT</version>
121                 </dependency>
122                 <dependency>
123                         <groupId>org.opendaylight.controller</groupId>
124                         <artifactId>sal</artifactId>
125                         <version>0.4.0-SNAPSHOT</version>
126                 </dependency>
127                 <dependency>
128                         <groupId>org.opendaylight.controller</groupId>
129                         <artifactId>topologymanager</artifactId>
130                         <version>0.4.0-SNAPSHOT</version>
131                 </dependency>
132                 <dependency>
133                         <groupId>org.opendaylight.controller</groupId>
134                         <artifactId>web</artifactId>
135                         <version>0.4.0-SNAPSHOT</version>
136                 </dependency>
137         </dependencies>
138 </project>