Merge "Add CLI for managing aaa data model"
[aaa.git] / aaa-encrypt-service / 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.controller</groupId>
7         <artifactId>config-parent</artifactId>
8         <version>0.6.0-SNAPSHOT</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.opendaylight.aaa</groupId>
13     <artifactId>aaa-encrypt-service</artifactId>
14     <packaging>bundle</packaging>
15     <version>0.5.0-SNAPSHOT</version>
16
17     <dependencies>
18         <!--Yang Binding -->
19         <dependency>
20             <groupId>org.opendaylight.controller</groupId>
21             <artifactId>config-api</artifactId>
22             <version>${config.version}</version>
23         </dependency>
24         <dependency>
25             <groupId>org.opendaylight.controller</groupId>
26             <artifactId>sal-binding-config</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.controller</groupId>
30             <artifactId>sal-binding-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.opendaylight.controller</groupId>
34             <artifactId>sal-common-util</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.apache.felix</groupId>
38             <artifactId>org.apache.felix.dependencymanager</artifactId>
39             <scope>provided</scope>
40         </dependency>
41         <dependency>
42             <groupId>org.osgi</groupId>
43             <artifactId>org.osgi.core</artifactId>
44         </dependency>
45         <!-- Testing Dependencies -->
46         <dependency>
47             <groupId>junit</groupId>
48             <artifactId>junit</artifactId>
49             <scope>test</scope>
50         </dependency>
51         <dependency>
52             <groupId>org.mockito</groupId>
53             <artifactId>mockito-all</artifactId>
54             <scope>test</scope>
55         </dependency>
56     </dependencies>
57
58     <build>
59         <plugins>
60             <plugin>
61                 <groupId>org.codehaus.mojo</groupId>
62                 <artifactId>build-helper-maven-plugin</artifactId>
63                 <executions>
64                     <execution>
65                         <id>attach-artifacts</id>
66                         <goals>
67                             <goal>attach-artifact</goal>
68                         </goals>
69                         <phase>package</phase>
70                         <configuration>
71                             <artifacts>
72                                 <artifact>
73                                     <file>${project.build.directory}/classes/initial/aaa-encrypt-service-config.xml</file>
74                                     <type>xml</type>
75                                     <classifier>config</classifier>
76                                 </artifact>
77                             </artifacts>
78                         </configuration>
79                     </execution>
80                 </executions>
81             </plugin>
82             <plugin>
83                 <groupId>org.apache.felix</groupId>
84                 <artifactId>maven-bundle-plugin</artifactId>
85                 <!-- override default version so we don't use bnd 2.3.0 when embedding sqlite -->
86                 <extensions>true</extensions>
87                 <configuration>
88                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
89                 </configuration>
90             </plugin>
91         </plugins>
92     </build>
93 </project>