39a450dc912799c5aea5f8676d3f40763a39b66d
[vpnservice.git] / fcapsapplication / fcapsapplication-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2015 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10     <parent>
11         <groupId>org.opendaylight.vpnservice</groupId>
12         <artifactId>config-parent</artifactId>
13         <version>0.3.0-SNAPSHOT</version>
14         <relativePath>../../commons/config-parent</relativePath>
15     </parent>
16
17     <modelVersion>4.0.0</modelVersion>
18     <groupId>org.opendaylight.vpnservice</groupId>
19     <artifactId>fcapsapplication-impl</artifactId>
20     <version>${vpnservices.version}</version>
21     <packaging>bundle</packaging>
22
23     <dependencies>
24         <dependency>
25             <groupId>org.opendaylight.controller</groupId>
26             <artifactId>sal-binding-broker-impl</artifactId>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.controller</groupId>
30             <artifactId>config-api</artifactId>
31         </dependency>
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-binding-config</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.vpnservice</groupId>
42             <artifactId>fcapsapplication-jmxapi</artifactId>
43             <version>${vpnservices.version}</version>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.openflowplugin.model</groupId>
47             <artifactId>model-flow-service</artifactId>
48             <version>${openflowplugin.version}</version>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.openflowplugin</groupId>
52             <artifactId>openflowplugin-common</artifactId>
53             <version>${openflowplugin.version}</version>
54         </dependency>
55     </dependencies>
56     <build>
57         <plugins>
58             <plugin>
59                 <groupId>org.apache.felix</groupId>
60                 <artifactId>maven-bundle-plugin</artifactId>
61             </plugin>
62             <plugin>
63                 <groupId>org.opendaylight.yangtools</groupId>
64                 <artifactId>yang-maven-plugin</artifactId>
65             </plugin>
66
67             <plugin>
68                 <groupId>org.codehaus.mojo</groupId>
69                 <artifactId>build-helper-maven-plugin</artifactId>
70                 <executions>
71                     <execution>
72                         <id>attach-artifacts</id>
73                         <goals>
74                             <goal>attach-artifact</goal>
75                         </goals>
76                         <phase>package</phase>
77                         <configuration>
78                             <artifacts>
79                                 <artifact>
80                                     <file>${project.build.directory}/classes/initial/73-fcaps-app.xml</file>
81                                     <type>xml</type>
82                                     <classifier>config</classifier>
83                                 </artifact>
84                             </artifacts>
85                         </configuration>
86                     </execution>
87                 </executions>
88             </plugin>
89         </plugins>
90     </build>
91 </project>