Merge "Fixed YANG union type resolving in yang model parser."
[controller.git] / opendaylight / web / root / 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
12         <groupId>org.opendaylight.controller</groupId>
13         <artifactId>web</artifactId>
14         <version>0.4.0-SNAPSHOT</version>
15         <packaging>bundle</packaging>
16
17         <build>
18                 <plugins>
19                         <plugin>
20                                 <groupId>org.apache.felix</groupId>
21                                 <artifactId>maven-bundle-plugin</artifactId>
22                                 <version>2.3.6</version>
23                                 <extensions>true</extensions>
24                                 <configuration>
25                                         <instructions>
26                                                 <Import-Package>
27                                                         org.opendaylight.controller.configuration,
28                                                         org.opendaylight.controller.sal.authorization,
29                                                         org.opendaylight.controller.sal.core,
30                                                         org.opendaylight.controller.sal.utils,
31                                                         org.opendaylight.controller.usermanager,
32                                                         org.opendaylight.controller.usermanager.internal,
33                                                         org.opendaylight.controller.containermanager,
34                                                         com.google.gson,
35                                                         javax.annotation,
36                                                         javax.naming,
37                                                         javax.servlet,
38                                                         javax.servlet.annotation,
39                                                         javax.servlet.http,
40                                                         javax.servlet.jsp,
41                                                         javax.servlet.jsp.el,
42                                                         javax.servlet.jsp.jstl.core,
43                                                         javax.servlet.jsp.jstl.fmt,
44                                                         javax.servlet.jsp.jstl.tlv,
45                                                         javax.servlet.jsp.tagext,
46                                                         javax.servlet.resources,
47                                                         javax.xml.parsers,
48                                                         javax.xml.transform,
49                                                         org.apache.commons.logging,
50                                                         org.apache.taglibs.standard.functions,
51                                                         org.apache.taglibs.standard.resources,
52                                                         org.apache.taglibs.standard.tag.common.core,
53                                                         org.apache.taglibs.standard.tag.common.fmt,
54                                                         org.apache.taglibs.standard.tag.rt.core,
55                                                         org.apache.taglibs.standard.tag.rt.fmt,
56                                                         org.apache.taglibs.standard.tei,
57                                                         org.apache.taglibs.standard.tlv,
58                                                         org.codehaus.jackson,
59                                                         org.codehaus.jackson.annotate,
60                                                         org.codehaus.jackson.map,
61                                                         org.codehaus.jackson.map.annotate,
62                                                         org.osgi.framework,
63                                                         org.slf4j,
64                                                         org.springframework.beans,
65                                                         org.springframework.beans.factory.xml,
66                                                         org.springframework.context.config,
67                                                         org.springframework.core,
68                                                         org.springframework.stereotype,
69                                                         org.springframework.ui,
70                                                         org.springframework.web,
71                                                         org.springframework.web.bind.annotation,
72                                                         org.springframework.web.servlet,
73                                                         org.springframework.web.servlet.config,
74                                                         org.springframework.web.servlet.view,
75                                                         org.springframework.web.servlet.view.json,
76
77                                                         org.springframework.web.filter,
78                                                         org.springframework.web.context,
79                                                         org.springframework.security.core,
80                                                         org.springframework.security.core.userdetails,
81                                                         org.springframework.security.core.authority,
82                                                         org.springframework.security.core.context,
83                                                         org.springframework.security.authentication,
84                                                         org.springframework.security.config,
85                                                         org.springframework.security.config.authentication,
86                                                         org.springframework.security.taglibs.authz,
87                                                         org.springframework.security.web,
88                                                         org.springframework.security.web.context,
89                                                         org.springframework.security.web.authentication,
90                                                         org.springframework.security.web.authentication.www,
91                                                         org.springframework.security.provisioning,
92                                                         org.springframework.security.web.util,
93                                                         org.springframework.security.web.authentication.rememberme,
94                                                         org.springframework.security.web.authentication.logout,
95                                                         org.springframework.dao,
96                                                         org.springframework.security.web.savedrequest,
97                                                         org.springframework.security.access,
98                                                         org.springframework.util
99
100
101                                                 </Import-Package>
102                                                 <Export-Package>
103                                                         org.opendaylight.controller.web
104                                                 </Export-Package>
105                                                 <Web-ContextPath>/</Web-ContextPath>
106                                         </instructions>
107                                 </configuration>
108                         </plugin>
109                 </plugins>
110         </build>
111         <dependencies>
112                 <dependency>
113                         <groupId>org.opendaylight.controller</groupId>
114                         <artifactId>configuration</artifactId>
115                         <version>0.4.0-SNAPSHOT</version>
116                 </dependency>
117                 <dependency>
118                         <groupId>org.opendaylight.controller</groupId>
119                         <artifactId>sal</artifactId>
120                         <version>0.4.0-SNAPSHOT</version>
121                 </dependency>
122                 <dependency>
123                         <groupId>org.opendaylight.controller</groupId>
124                         <artifactId>usermanager</artifactId>
125                         <version>0.4.0-SNAPSHOT</version>
126                 </dependency>
127                 <dependency>
128                         <groupId>org.opendaylight.controller</groupId>
129                         <artifactId>containermanager</artifactId>
130                         <version>0.4.0-SNAPSHOT</version>
131                 </dependency>
132                 <dependency>
133                         <groupId>junit</groupId>
134                         <artifactId>junit</artifactId>
135                         <version>4.8.1</version>
136                         <scope>test</scope>
137                 </dependency>
138                 <dependency>
139                         <groupId>org.springframework</groupId>
140                         <artifactId>spring-beans</artifactId>
141                         <version>3.2.1.RELEASE</version>
142                         <scope>provided</scope>
143                 </dependency>
144                 <dependency>
145                         <groupId>org.springframework</groupId>
146                         <artifactId>spring-core</artifactId>
147                         <version>3.2.1.RELEASE</version>
148                         <scope>provided</scope>
149                 </dependency>
150                 <dependency>
151                         <groupId>org.springframework</groupId>
152                         <artifactId>spring-context</artifactId>
153                         <version>3.2.1.RELEASE</version>
154                         <scope>provided</scope>
155                 </dependency>
156                 <dependency>
157                         <groupId>org.springframework</groupId>
158                         <artifactId>spring-expression</artifactId>
159                         <version>3.2.1.RELEASE</version>
160                         <scope>provided</scope>
161                 </dependency>
162                 <dependency>
163                         <groupId>org.springframework</groupId>
164                         <artifactId>spring-web</artifactId>
165                         <version>3.2.1.RELEASE</version>
166                         <scope>provided</scope>
167                 </dependency>
168                 <dependency>
169                         <groupId>org.springframework</groupId>
170                         <artifactId>spring-webmvc</artifactId>
171                         <version>3.2.1.RELEASE</version>
172                         <scope>provided</scope>
173                 </dependency>
174         </dependencies>
175 </project>