Bump versions by x.(y+1).z for next dev cycle
[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         <!-- Testing Dependencies -->
54     <dependency>
55       <groupId>junit</groupId>
56       <artifactId>junit</artifactId>
57       <scope>test</scope>
58     </dependency>
59     <dependency>
60       <groupId>org.mockito</groupId>
61       <artifactId>mockito-core</artifactId>
62       <scope>test</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.powermock</groupId>
66       <artifactId>powermock-core</artifactId>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.powermock</groupId>
71       <artifactId>powermock-module-junit4</artifactId>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.powermock</groupId>
76       <artifactId>powermock-api-mockito</artifactId>
77       <scope>test</scope>
78     </dependency>
79     <dependency>
80       <groupId>org.powermock</groupId>
81       <artifactId>powermock-api-support</artifactId>
82       <scope>test</scope>
83     </dependency>
84   </dependencies>
85
86   <build>
87     <plugins>
88       <plugin>
89         <groupId>org.apache.maven.plugins</groupId>
90         <artifactId>maven-checkstyle-plugin</artifactId>
91         <configuration>
92           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
93         </configuration>
94       </plugin>
95       <plugin>
96         <groupId>org.codehaus.mojo</groupId>
97         <artifactId>build-helper-maven-plugin</artifactId>
98         <executions>
99           <execution>
100             <id>attach-artifacts</id>
101             <goals>
102               <goal>attach-artifact</goal>
103             </goals>
104             <phase>package</phase>
105             <configuration>
106               <artifacts>
107                 <artifact>
108                   <file>${project.build.directory}/classes/initial/aaa-encrypt-service-config.xml</file>
109                   <type>xml</type>
110                   <classifier>config</classifier>
111                 </artifact>
112               </artifacts>
113             </configuration>
114           </execution>
115         </executions>
116       </plugin>
117       <plugin>
118         <groupId>org.apache.felix</groupId>
119         <artifactId>maven-bundle-plugin</artifactId>
120                 <!-- override default version so we don't use bnd 2.3.0 when embedding sqlite -->
121         <extensions>true</extensions>
122         <configuration>
123         </configuration>
124       </plugin>
125     </plugins>
126   </build>
127 </project>