Eliminate dependencies on slf4j-{api,simple}
[aaa.git] / aaa-authn / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2014-2015 Hewlett-Packard Development Company, L.P. and others.
3     All rights reserved. This program and the accompanying materials are made
4     available under the terms of the Eclipse Public License v1.0 which accompanies
5     this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8     <modelVersion>4.0.0</modelVersion>
9     <parent>
10         <groupId>org.opendaylight.aaa</groupId>
11         <artifactId>aaa-parent</artifactId>
12         <version>0.5.0-SNAPSHOT</version>
13         <relativePath>../parent</relativePath>
14     </parent>
15
16     <artifactId>aaa-authn</artifactId>
17     <packaging>bundle</packaging>
18
19     <dependencies>
20         <dependency>
21             <groupId>org.opendaylight.aaa</groupId>
22             <artifactId>aaa-authn-api</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>com.google.guava</groupId>
26             <artifactId>guava</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>com.sun.jersey</groupId>
30             <artifactId>jersey-server</artifactId>
31             <scope>provided</scope>
32         </dependency>
33         <dependency>
34             <groupId>org.osgi</groupId>
35             <artifactId>org.osgi.core</artifactId>
36             <scope>provided</scope>
37         </dependency>
38         <dependency>
39             <groupId>org.osgi</groupId>
40             <artifactId>org.osgi.compendium</artifactId>
41             <scope>provided</scope>
42         </dependency>
43         <dependency>
44             <groupId>org.apache.felix</groupId>
45             <artifactId>org.apache.felix.dependencymanager</artifactId>
46             <scope>provided</scope>
47         </dependency>
48         <!-- Testing Dependencies -->
49         <dependency>
50             <groupId>junit</groupId>
51             <artifactId>junit</artifactId>
52             <scope>test</scope>
53         </dependency>
54     </dependencies>
55
56     <build>
57         <plugins>
58             <plugin>
59                 <groupId>org.apache.felix</groupId>
60                 <artifactId>maven-bundle-plugin</artifactId>
61                 <extensions>true</extensions>
62                 <configuration>
63                     <instructions>
64                         <Bundle-Activator>org.opendaylight.aaa.Activator</Bundle-Activator>
65                     </instructions>
66                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
67                 </configuration>
68             </plugin>
69             <plugin>
70                 <groupId>org.codehaus.mojo</groupId>
71                 <artifactId>build-helper-maven-plugin</artifactId>
72                 <executions>
73                     <execution>
74                         <id>attach-artifacts</id>
75                         <phase>package</phase>
76                         <goals>
77                             <goal>attach-artifact</goal>
78                         </goals>
79                         <configuration>
80                             <artifacts>
81                                 <artifact>
82                                     <file>${project.build.directory}/classes/authn.cfg</file>
83                                     <type>cfg</type>
84                                     <classifier>config</classifier>
85                                 </artifact>
86                             </artifacts>
87                         </configuration>
88                     </execution>
89                 </executions>
90             </plugin>
91         </plugins>
92     </build>
93
94 </project>