Merge "AAA Model Changes"
[aaa.git] / aaa-authn-store / 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"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.aaa</groupId>
7         <artifactId>aaa-parent</artifactId>
8         <version>0.3.0-SNAPSHOT</version>
9         <relativePath>../parent</relativePath>
10     </parent>
11
12     <artifactId>aaa-authn-store</artifactId>
13     <packaging>bundle</packaging>
14
15     <dependencies>
16         <dependency>
17             <groupId>net.sf.ehcache</groupId>
18             <artifactId>ehcache</artifactId>
19         </dependency>
20         <dependency>
21             <groupId>org.opendaylight.aaa</groupId>
22             <artifactId>aaa-authn-api</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>org.slf4j</groupId>
26             <artifactId>slf4j-api</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.osgi</groupId>
30             <artifactId>org.osgi.core</artifactId>
31             <scope>provided</scope>
32         </dependency>
33         <dependency>
34             <groupId>org.apache.felix</groupId>
35             <artifactId>org.apache.felix.dependencymanager</artifactId>
36             <scope>provided</scope>
37         </dependency>
38         <!-- Testing Dependencies -->
39         <dependency>
40             <groupId>junit</groupId>
41             <artifactId>junit</artifactId>
42             <scope>test</scope>
43         </dependency>
44         <dependency>
45             <groupId>org.mockito</groupId>
46             <artifactId>mockito-all</artifactId>
47             <scope>test</scope>
48         </dependency>
49         <dependency>
50             <groupId>org.slf4j</groupId>
51             <artifactId>slf4j-simple</artifactId>
52             <scope>test</scope>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.aaa</groupId>
56             <artifactId>aaa-authn</artifactId>
57             <scope>test</scope>
58         </dependency>        
59     </dependencies>
60
61     <build>
62         <plugins>
63             <plugin>
64                 <groupId>org.apache.felix</groupId>
65                 <artifactId>maven-bundle-plugin</artifactId>
66                 <extensions>true</extensions>
67                 <configuration>
68                     <instructions>
69                         <Bundle-Activator>org.opendaylight.aaa.store.Activator</Bundle-Activator>
70                     </instructions>
71                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
72                 </configuration>
73             </plugin>
74             <plugin>
75                 <groupId>org.codehaus.mojo</groupId>
76                 <artifactId>build-helper-maven-plugin</artifactId>
77                 <executions>
78                     <execution>
79                         <id>attach-artifacts</id>
80                         <phase>package</phase>
81                         <goals>
82                             <goal>attach-artifact</goal>
83                         </goals>
84                         <configuration>
85                             <artifacts>
86                                 <artifact>
87                                     <file>${project.build.directory}/classes/tokens.cfg</file>
88                                     <type>cfg</type>
89                                     <classifier>config</classifier>
90                                 </artifact>
91                             </artifacts>
92                         </configuration>
93                     </execution>
94                 </executions>
95             </plugin>            
96         </plugins>
97     </build>
98
99 </project>