Bug 8157 Fixed deleting a user and recreating it fails with aaa-cli-jar
[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   <name>ODL :: aaa :: ${project.artifactId}</name>
18   <packaging>bundle</packaging>
19
20   <dependencies>
21     <dependency>
22       <groupId>org.opendaylight.aaa</groupId>
23       <artifactId>aaa-authn-api</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>com.google.guava</groupId>
27       <artifactId>guava</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>com.sun.jersey</groupId>
31       <artifactId>jersey-server</artifactId>
32       <scope>provided</scope>
33     </dependency>
34     <dependency>
35       <groupId>org.osgi</groupId>
36       <artifactId>org.osgi.core</artifactId>
37       <scope>provided</scope>
38     </dependency>
39     <dependency>
40       <groupId>org.osgi</groupId>
41       <artifactId>org.osgi.compendium</artifactId>
42       <scope>provided</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.apache.felix</groupId>
46       <artifactId>org.apache.felix.dependencymanager</artifactId>
47       <scope>provided</scope>
48     </dependency>
49         <!-- Testing Dependencies -->
50     <dependency>
51       <groupId>junit</groupId>
52       <artifactId>junit</artifactId>
53       <scope>test</scope>
54     </dependency>
55   </dependencies>
56
57   <build>
58     <plugins>
59       <plugin>
60         <groupId>org.apache.felix</groupId>
61         <artifactId>maven-bundle-plugin</artifactId>
62         <extensions>true</extensions>
63         <configuration>
64           <instructions>
65             <Bundle-Activator>org.opendaylight.aaa.Activator</Bundle-Activator>
66           </instructions>
67         </configuration>
68       </plugin>
69       <plugin>
70         <groupId>org.apache.maven.plugins</groupId>
71         <artifactId>maven-checkstyle-plugin</artifactId>
72           <configuration>
73             <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
74           </configuration>
75       </plugin>
76       <plugin>
77         <groupId>org.codehaus.mojo</groupId>
78         <artifactId>build-helper-maven-plugin</artifactId>
79         <executions>
80           <execution>
81             <id>attach-artifacts</id>
82             <phase>package</phase>
83             <goals>
84               <goal>attach-artifact</goal>
85             </goals>
86             <configuration>
87               <artifacts>
88                 <artifact>
89                   <file>${project.build.directory}/classes/authn.cfg</file>
90                   <type>cfg</type>
91                   <classifier>config</classifier>
92                 </artifact>
93               </artifacts>
94             </configuration>
95           </execution>
96         </executions>
97       </plugin>
98     </plugins>
99   </build>
100
101 </project>