Add lispflowmapping specific configuration options
[controller.git] / opendaylight / appauth / 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.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.4.2-SNAPSHOT</version>
8     <relativePath>../commons/opendaylight</relativePath>
9   </parent>
10   <artifactId>appauth</artifactId>
11   <version>0.4.2-SNAPSHOT</version>
12   <packaging>bundle</packaging>
13
14   <dependencies>
15     <dependency>
16       <groupId>org.opendaylight.controller</groupId>
17       <artifactId>configuration</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>containermanager</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>sal</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>usermanager</artifactId>
30     </dependency>
31   </dependencies>
32
33   <build>
34     <plugins>
35       <plugin>
36         <groupId>org.apache.felix</groupId>
37         <artifactId>maven-bundle-plugin</artifactId>
38         <version>${bundle.plugin.version}</version>
39         <extensions>true</extensions>
40         <configuration>
41           <instructions>
42             <Import-Package>org.opendaylight.controller.configuration,
43                             org.opendaylight.controller.containermanager,
44                             org.opendaylight.controller.sal.authorization,
45                             org.opendaylight.controller.sal.utils,
46                             org.opendaylight.controller.usermanager,
47                             org.slf4j,
48                             org.apache.felix.dm,</Import-Package>
49             <Export-Package>org.opendaylight.controller.appauth,
50                             org.opendaylight.controller.appauth.authorization</Export-Package>
51             <Bundle-Activator></Bundle-Activator>
52           </instructions>
53         </configuration>
54       </plugin>
55     </plugins>
56   </build>
57   <scm>
58     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
59     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
60     <tag>HEAD</tag>
61     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
62   </scm>
63 </project>