Bump versions by x.(y+1).z for next dev cycle
[aaa.git] / aaa-cert / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015, 2017 Inocybe Technology. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10
11   <parent>
12     <groupId>org.opendaylight.mdsal</groupId>
13     <artifactId>binding-parent</artifactId>
14     <version>0.12.0-SNAPSHOT</version>
15     <relativePath />
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.aaa</groupId>
20   <artifactId>aaa-cert</artifactId>
21   <version>0.7.0-SNAPSHOT</version>
22   <name>ODL :: aaa :: ${project.artifactId}</name>
23   <packaging>bundle</packaging>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>org.opendaylight.aaa</groupId>
29         <artifactId>aaa-artifacts</artifactId>
30         <version>${project.version}</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34     </dependencies>
35   </dependencyManagement>
36
37   <dependencies>
38     <dependency>
39       <groupId>org.opendaylight.aaa</groupId>
40       <artifactId>aaa-encrypt-service</artifactId>
41     </dependency>
42
43     <!-- Bouncy Castle dependency -->
44     <dependency>
45       <groupId>org.bouncycastle</groupId>
46       <artifactId>bcprov-jdk15on</artifactId>
47     </dependency>
48
49     <!-- Testing Dependencies -->
50     <dependency>
51       <groupId>junit</groupId>
52       <artifactId>junit</artifactId>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.mockito</groupId>
57       <artifactId>mockito-core</artifactId>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.powermock</groupId>
62       <artifactId>powermock-core</artifactId>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.powermock</groupId>
67       <artifactId>powermock-module-junit4</artifactId>
68       <scope>test</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.powermock</groupId>
72       <artifactId>powermock-api-mockito</artifactId>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.powermock</groupId>
77       <artifactId>powermock-api-support</artifactId>
78       <scope>test</scope>
79     </dependency>
80   </dependencies>
81
82   <build>
83     <plugins>
84       <plugin>
85         <groupId>org.apache.maven.plugins</groupId>
86         <artifactId>maven-checkstyle-plugin</artifactId>
87         <configuration>
88            <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
89         </configuration>
90       </plugin>
91       <plugin>
92         <groupId>org.apache.felix</groupId>
93         <artifactId>maven-bundle-plugin</artifactId>
94         <extensions>true</extensions>
95         <configuration>
96           <instructions>
97             <Export-Package>
98               org.opendaylight.aaa.cert.api.*,
99               org.opendaylight.aaa.cert.impl.*,
100               org.opendaylight.yang.gen.v1.urn.opendaylight.yang.aaa.cert.rev151126.*
101             </Export-Package>
102           </instructions>
103         </configuration>
104       </plugin>
105       <plugin>
106         <groupId>org.codehaus.mojo</groupId>
107         <artifactId>build-helper-maven-plugin</artifactId>
108         <executions>
109           <execution>
110             <id>attach-artifacts</id>
111             <goals>
112               <goal>attach-artifact</goal>
113             </goals>
114             <phase>package</phase>
115             <configuration>
116               <artifacts>
117                 <artifact>
118                   <file>${project.build.directory}/classes/initial/aaa-cert-config.xml</file>
119                   <type>xml</type>
120                   <classifier>config</classifier>
121                 </artifact>
122               </artifacts>
123             </configuration>
124           </execution>
125         </executions>
126       </plugin>
127     </plugins>
128   </build>
129 </project>