Revert "Remove un-used felix.dm usage from aaa-encrypt-service"
[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.mdsal</groupId>
7     <artifactId>binding-parent</artifactId>
8     <version>0.12.0-SNAPSHOT</version>
9     <relativePath />
10   </parent>
11
12   <groupId>org.opendaylight.aaa</groupId>
13   <artifactId>aaa-encrypt-service</artifactId>
14   <version>0.7.0-SNAPSHOT</version>
15   <name>ODL :: aaa :: ${project.artifactId}</name>
16   <packaging>bundle</packaging>
17
18   <dependencyManagement>
19     <dependencies>
20       <dependency>
21         <groupId>${project.groupId}</groupId>
22         <artifactId>aaa-parent</artifactId>
23         <version>${project.version}</version>
24         <type>pom</type>
25         <scope>import</scope>
26       </dependency>
27     </dependencies>
28   </dependencyManagement>
29
30   <dependencies>
31         <!--Yang Binding -->
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>sal-binding-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>sal-common-util</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     <dependency>
50       <groupId>org.apache.commons</groupId>
51       <artifactId>commons-lang3</artifactId>
52     </dependency>
53         <dependency>
54             <groupId>org.bouncycastle</groupId>
55             <artifactId>bcpkix-jdk15on</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.bouncycastle</groupId>
59             <artifactId>bcprov-jdk15on</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.apache.sshd</groupId>
63             <artifactId>sshd-core</artifactId>
64             <version>0.14.0</version>
65         </dependency>
66         <!-- Testing Dependencies -->
67     <dependency>
68       <groupId>junit</groupId>
69       <artifactId>junit</artifactId>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.mockito</groupId>
74       <artifactId>mockito-core</artifactId>
75       <scope>test</scope>
76     </dependency>
77     <dependency>
78       <groupId>org.powermock</groupId>
79       <artifactId>powermock-core</artifactId>
80       <scope>test</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.powermock</groupId>
84       <artifactId>powermock-module-junit4</artifactId>
85       <scope>test</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.powermock</groupId>
89       <artifactId>powermock-api-mockito</artifactId>
90       <scope>test</scope>
91     </dependency>
92     <dependency>
93       <groupId>org.powermock</groupId>
94       <artifactId>powermock-api-support</artifactId>
95       <scope>test</scope>
96     </dependency>
97   </dependencies>
98
99   <build>
100     <plugins>
101       <plugin>
102         <groupId>org.apache.maven.plugins</groupId>
103         <artifactId>maven-checkstyle-plugin</artifactId>
104         <configuration>
105           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
106         </configuration>
107       </plugin>
108       <plugin>
109         <groupId>org.codehaus.mojo</groupId>
110         <artifactId>build-helper-maven-plugin</artifactId>
111         <executions>
112           <execution>
113             <id>attach-artifacts</id>
114             <goals>
115               <goal>attach-artifact</goal>
116             </goals>
117             <phase>package</phase>
118             <configuration>
119               <artifacts>
120                 <artifact>
121                   <file>${project.build.directory}/classes/initial/aaa-encrypt-service-config.xml</file>
122                   <type>xml</type>
123                   <classifier>config</classifier>
124                 </artifact>
125               </artifacts>
126             </configuration>
127           </execution>
128         </executions>
129       </plugin>
130       <plugin>
131         <groupId>org.apache.felix</groupId>
132         <artifactId>maven-bundle-plugin</artifactId>
133                 <!-- override default version so we don't use bnd 2.3.0 when embedding sqlite -->
134         <extensions>true</extensions>
135         <configuration>
136         </configuration>
137       </plugin>
138     </plugins>
139   </build>
140 </project>