Use config-parent
[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.slf4j</groupId>
38             <artifactId>slf4j-api</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.apache.felix</groupId>
42             <artifactId>org.apache.felix.dependencymanager</artifactId>
43             <scope>provided</scope>
44         </dependency>
45         <dependency>
46             <groupId>org.osgi</groupId>
47             <artifactId>org.osgi.core</artifactId>
48         </dependency>
49         <!-- Testing Dependencies -->
50         <dependency>
51             <groupId>junit</groupId>
52             <artifactId>junit</artifactId>
53             <scope>test</scope>
54         </dependency>
55         <dependency>
56             <groupId>org.slf4j</groupId>
57             <artifactId>slf4j-simple</artifactId>
58             <scope>test</scope>
59         </dependency>
60         <dependency>
61             <groupId>org.mockito</groupId>
62             <artifactId>mockito-all</artifactId>
63             <scope>test</scope>
64         </dependency>
65     </dependencies>
66
67     <build>
68         <plugins>
69             <plugin>
70                 <groupId>org.codehaus.mojo</groupId>
71                 <artifactId>build-helper-maven-plugin</artifactId>
72                 <executions>
73                     <execution>
74                         <id>attach-artifacts</id>
75                         <goals>
76                             <goal>attach-artifact</goal>
77                         </goals>
78                         <phase>package</phase>
79                         <configuration>
80                             <artifacts>
81                                 <artifact>
82                                     <file>${project.build.directory}/classes/initial/aaa-encrypt-service-config.xml</file>
83                                     <type>xml</type>
84                                     <classifier>config</classifier>
85                                 </artifact>
86                             </artifacts>
87                         </configuration>
88                     </execution>
89                 </executions>
90             </plugin>
91             <plugin>
92                 <groupId>org.apache.felix</groupId>
93                 <artifactId>maven-bundle-plugin</artifactId>
94                 <!-- override default version so we don't use bnd 2.3.0 when embedding sqlite -->
95                 <extensions>true</extensions>
96                 <configuration>
97                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
98                 </configuration>
99             </plugin>
100         </plugins>
101     </build>
102 </project>