Use AAAShiroFilter as TokenAuthFilter was deprecated in Be
[neutron.git] / northbound-api / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.neutron</groupId>
6     <artifactId>project-neutron-parent</artifactId>
7     <version>0.7.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.neutron</groupId>
12   <artifactId>northbound-api</artifactId>
13   <version>0.7.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15   <properties>
16     <checkstyle.location>${project.parent.basedir}/src/main/resources</checkstyle.location>
17   </properties>
18   <dependencies>
19     <dependency>
20       <groupId>com.sun.jersey</groupId>
21       <artifactId>jersey-core</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>com.sun.jersey</groupId>
25       <artifactId>jersey-server</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller.thirdparty</groupId>
29       <artifactId>com.sun.jersey.jersey-servlet</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.codehaus.enunciate</groupId>
33       <artifactId>enunciate-core-annotations</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.eclipse.persistence</groupId>
37       <artifactId>org.eclipse.persistence.moxy</artifactId>
38     </dependency>
39     <dependency>
40         <groupId>javax.validation</groupId>
41         <artifactId>validation-api</artifactId>
42         <version>1.1.0.Final</version>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.neutron</groupId>
46       <artifactId>neutron-spi</artifactId>
47       <version>${project.version}</version>
48     </dependency>
49     <dependency>
50       <groupId>org.osgi</groupId>
51       <artifactId>org.osgi.core</artifactId>
52     </dependency>
53   </dependencies>
54   <build>
55     <plugins>
56       <plugin>
57         <groupId>org.apache.felix</groupId>
58         <artifactId>maven-bundle-plugin</artifactId>
59         <extensions>true</extensions>
60         <configuration>
61           <instructions>
62             <Import-Package>
63               com.sun.jersey.spi.container.servlet,
64               org.eclipse.jetty.servlets,
65               org.opendaylight.aaa.shiro.filters,
66               org.opendaylight.aaa.shiro.realm,
67               org.opendaylight.aaa.shiro.web.env,
68               org.apache.shiro.web.env,
69               !org.codehaus.enunciate.jaxrs,
70               javax.validation,
71               javax.ws.rs.ext,
72               javax.xml.bind,
73               *
74             </Import-Package>
75             <Web-ContextPath>/controller/nb/v2/neutron</Web-ContextPath>
76           </instructions>
77           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
78         </configuration>
79       </plugin>
80     </plugins>
81   </build>
82   <scm>
83     <connection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</connection>
84     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/neutron.git</developerConnection>
85     <tag>HEAD</tag>
86     <url>https://wiki.opendaylight.org/view/NeutronNorthBound:Main</url>
87   </scm>
88
89   <distributionManagement>
90     <!-- OpenDayLight Released artifact -->
91     <repository>
92       <id>opendaylight-release</id>
93       <url>${nexusproxy}/repositories/${nexus.repository.release}/</url>
94     </repository>
95     <!-- OpenDayLight Snapshot artifact -->
96     <snapshotRepository>
97       <id>opendaylight-snapshot</id>
98       <url>${nexusproxy}/repositories/${nexus.repository.snapshot}/</url>
99     </snapshotRepository>
100     <!-- Site deployment -->
101     <site>
102       <id>website</id>
103       <url>${sitedeploy}</url>
104     </site>
105   </distributionManagement>
106 </project>