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