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