Merge "Finalizinf model + removal of double key on list"
[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.project</artifactId>
8         <version>0.1.0-SNAPSHOT</version>
9         <relativePath>../</relativePath>
10     </parent>
11
12     <artifactId>aaa-authn-store</artifactId>
13     <version>0.1.0-SNAPSHOT</version>
14     <packaging>bundle</packaging>
15
16     <dependencies>
17         <dependency>
18             <groupId>net.sf.ehcache</groupId>
19             <artifactId>ehcache</artifactId>
20             <version>${ehcache.version}</version>
21         </dependency>
22         <dependency>
23             <groupId>org.opendaylight.aaa</groupId>
24             <artifactId>aaa-authn-api</artifactId>
25             <version>${project.version}</version>
26         </dependency>
27         <dependency>
28             <groupId>org.slf4j</groupId>
29             <artifactId>slf4j-api</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.osgi</groupId>
33             <artifactId>org.osgi.core</artifactId>
34             <scope>provided</scope>
35         </dependency>
36         <dependency>
37             <groupId>org.apache.felix</groupId>
38             <artifactId>org.apache.felix.dependencymanager</artifactId>
39             <scope>provided</scope>
40         </dependency>
41         <!-- Testing Dependencies -->
42         <dependency>
43             <groupId>junit</groupId>
44             <artifactId>junit</artifactId>
45             <scope>test</scope>
46         </dependency>
47         <dependency>
48             <groupId>org.mockito</groupId>
49             <artifactId>mockito-all</artifactId>
50             <scope>test</scope>
51         </dependency>
52         <dependency>
53             <groupId>org.slf4j</groupId>
54             <artifactId>slf4j-simple</artifactId>
55             <version>1.7.7</version>
56             <scope>test</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.aaa</groupId>
60             <artifactId>aaa-authn</artifactId>
61             <version>${project.version}</version>
62             <scope>test</scope>
63         </dependency>        
64     </dependencies>
65
66     <build>
67         <plugins>
68             <plugin>
69                 <groupId>org.apache.felix</groupId>
70                 <artifactId>maven-bundle-plugin</artifactId>
71                 <extensions>true</extensions>
72                 <configuration>
73                     <instructions>
74                         <Bundle-Activator>org.opendaylight.aaa.store.Activator</Bundle-Activator>
75                     </instructions>
76                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
77                 </configuration>
78             </plugin>
79         </plugins>
80     </build>
81
82 </project>