b59f1bc114cef8f2d45977535ca90bc955113ddb
[netvirt.git] / coe / impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2017 Ericsson India Global Services Pvt Ltd. and others.  All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11
12     <parent>
13         <groupId>org.opendaylight.netvirt</groupId>
14         <artifactId>binding-parent</artifactId>
15         <version>0.7.0-SNAPSHOT</version>
16         <relativePath>../../commons/binding-parent</relativePath>
17     </parent>
18
19     <artifactId>coe-impl</artifactId>
20     <name>ODL :: netvirt :: ${project.artifactId}</name>
21     <packaging>bundle</packaging>
22     <modelVersion>4.0.0</modelVersion>
23
24     <dependencies>
25         <dependency>
26             <groupId>javax.inject</groupId>
27             <artifactId>javax.inject</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.coe</groupId>
31             <artifactId>coe-northbound-api</artifactId>
32             <version>0.4.0-SNAPSHOT</version>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.controller</groupId>
36             <artifactId>sal-binding-api</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.infrautils</groupId>
40             <artifactId>jobcoordinator-api</artifactId>
41             <version>${infrautils.version}</version>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}</groupId>
45             <artifactId>coe-api</artifactId>
46             <version>${project.version}</version>
47         </dependency>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>elanmanager-api</artifactId>
51             <version>${project.version}</version>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>vpnmanager-api</artifactId>
56             <version>${project.version}</version>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.ovsdb</groupId>
60             <artifactId>utils.southbound-utils</artifactId>
61             <version>${ovsdb.version}</version>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.serviceutils</groupId>
65             <artifactId>tools-api</artifactId>
66             <version>0.2.0-SNAPSHOT</version>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.genius</groupId>
70             <artifactId>mdsalutil-api</artifactId>
71             <version>${genius.version}</version>
72         </dependency>
73     </dependencies>
74
75     <build>
76         <plugins>
77             <plugin>
78                 <groupId>org.apache.aries.blueprint</groupId>
79                 <artifactId>blueprint-maven-plugin</artifactId>
80             </plugin>
81             <plugin>
82                 <groupId>org.apache.felix</groupId>
83                 <artifactId>maven-bundle-plugin</artifactId>
84                 <extensions>true</extensions>
85                 <configuration>
86                     <instructions>
87                         <!-- We purposely don't export any packages to avoid any dependencies
88                              on this bundle and prevent @Singleton annotated classes from being
89                              accidently included in another bundle's blueprint XML  -->
90                         <Export-Package/>
91                     </instructions>
92                 </configuration>
93             </plugin>
94             <plugin>
95                 <groupId>org.eclipse.xtend</groupId>
96                 <artifactId>xtend-maven-plugin</artifactId>
97                 <!-- https://jira.opendaylight.org/browse/ODLPARENT-156 -->
98                 <dependencies>
99                    <dependency>
100                        <groupId>org.eclipse.jdt</groupId>
101                        <artifactId>org.eclipse.jdt.core</artifactId>
102                        <version>3.13.102</version>
103                     </dependency>
104                 </dependencies>
105             </plugin>
106             <plugin>
107                 <groupId>org.codehaus.mojo</groupId>
108                 <artifactId>build-helper-maven-plugin</artifactId>
109                 <executions>
110                     <execution>
111                         <id>attach-artifacts</id>
112                         <goals>
113                             <goal>attach-artifact</goal>
114                         </goals>
115                         <phase>package</phase>
116                         <configuration>
117                             <artifacts>
118                                 <artifact>
119                                     <file>${project.build.directory}/classes/initial/netvirt-coe-config.xml</file>
120                                     <type>xml</type>
121                                     <classifier>config</classifier>
122                                 </artifact>
123                             </artifacts>
124                         </configuration>
125                     </execution>
126                 </executions>
127             </plugin>
128         </plugins>
129     </build>
130 </project>