[maven-release-plugin] prepare release releasepom-0.1.0
[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.0</version>
8     <relativePath>../commons/opendaylight</relativePath>
9   </parent>
10   <scm>
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
14     <tag>releasepom-0.1.0</tag>
15   </scm>
16   <artifactId>appauth</artifactId>
17   <version>0.4.0</version>
18   <packaging>bundle</packaging>
19
20     <build>
21         <plugins>
22             <plugin>
23                 <groupId>org.apache.felix</groupId>
24                 <artifactId>maven-bundle-plugin</artifactId>
25                 <version>${bundle.plugin.version}</version>
26                 <extensions>true</extensions>
27                 <configuration>
28                     <instructions>
29                         <Import-Package>
30                             org.opendaylight.controller.sal.authorization,
31                             org.opendaylight.controller.sal.utils,
32                             org.opendaylight.controller.usermanager,
33                             org.slf4j,
34                             org.apache.felix.dm,
35                              org.apache.commons.lang3.builder,
36                             org.eclipse.osgi.framework.console
37                         </Import-Package>
38                         <Export-Package>
39                             org.opendaylight.controller.appauth,
40                             org.opendaylight.controller.appauth.authorization
41                         </Export-Package>
42                         <Bundle-Activator>
43                         </Bundle-Activator>
44                     </instructions>
45                 </configuration>
46             </plugin>
47         </plugins>
48     </build>
49
50     <dependencies>
51         <dependency>
52          <groupId>org.opendaylight.controller</groupId>
53            <artifactId>sal</artifactId>
54           <version>0.5.0</version>
55         </dependency>
56         <dependency>
57          <groupId>org.opendaylight.controller</groupId>
58            <artifactId>usermanager</artifactId>
59           <version>0.4.0</version>
60         </dependency>
61         <dependency>
62           <groupId>junit</groupId>
63           <artifactId>junit</artifactId>
64           <version>4.8.1</version>
65           <scope>test</scope>
66         </dependency>
67     </dependencies>
68 </project>