Move config file under src/main/config
[groupbasedpolicy.git] / neutron-ovsdb / pom.xml
1 <?xml version="1.0"?>
2 <!-- Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved.
3   This program and the accompanying materials are made available under the
4   terms of the Eclipse Public License v1.0 which accompanies this distribution,
5   and is available at http://www.eclipse.org/legal/epl-v10.html -->
6 <project
7   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
8   xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
9   <modelVersion>4.0.0</modelVersion>
10
11   <parent>
12     <groupId>org.opendaylight.controller</groupId>
13     <artifactId>config-parent</artifactId>
14     <version>0.4.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.groupbasedpolicy</groupId>
19   <artifactId>neutron-ovsdb</artifactId>
20   <version>0.3.0-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22
23   <properties>
24     <ovsdb.version>1.2.1-SNAPSHOT</ovsdb.version>
25   </properties>
26
27   <dependencies>
28     <dependency>
29       <groupId>${project.groupId}</groupId>
30       <artifactId>groupbasedpolicy</artifactId>
31       <version>${project.version}</version>
32     </dependency>
33     <dependency>
34       <groupId>${project.groupId}</groupId>
35       <artifactId>ofoverlay-renderer</artifactId>
36       <version>${project.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>${project.groupId}</groupId>
40       <artifactId>neutron-mapper</artifactId>
41       <version>${project.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>config-api</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>sal-binding-api</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>sal-binding-config</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.ovsdb</groupId>
57       <artifactId>southbound-api</artifactId>
58       <version>${ovsdb.version}</version>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.ovsdb</groupId>
62       <artifactId>southbound-impl</artifactId>
63       <version>${ovsdb.version}</version>
64     </dependency>
65     <dependency>
66       <groupId>org.osgi</groupId>
67       <artifactId>org.osgi.core</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>junit</groupId>
71       <artifactId>junit</artifactId>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.mockito</groupId>
76       <artifactId>mockito-all</artifactId>
77       <scope>test</scope>
78     </dependency>
79     <!-- Sonar -->
80     <dependency>
81       <groupId>org.codehaus.sonar-plugins.java</groupId>
82       <artifactId>sonar-jacoco-listeners</artifactId>
83       <version>${sonar-jacoco-listeners.version}</version>
84       <scope>test</scope>
85     </dependency>
86   </dependencies>
87
88   <build>
89     <plugins>
90       <plugin>
91         <groupId>org.apache.felix</groupId>
92         <artifactId>maven-bundle-plugin</artifactId>
93         <configuration>
94           <instructions>
95             <Export-Package></Export-Package>
96             <Import-Package>*</Import-Package>
97           </instructions>
98         </configuration>
99       </plugin>
100       <plugin>
101         <groupId>org.opendaylight.yangtools</groupId>
102         <artifactId>yang-maven-plugin</artifactId>
103       </plugin>
104     </plugins>
105     <pluginManagement>
106       <plugins>
107         <plugin>
108           <groupId>org.eclipse.m2e</groupId>
109           <artifactId>lifecycle-mapping</artifactId>
110           <version>1.0.0</version>
111           <configuration>
112             <lifecycleMappingMetadata>
113               <pluginExecutions>
114                 <pluginExecution>
115                   <pluginExecutionFilter>
116                     <groupId>org.jacoco</groupId>
117                     <artifactId>jacoco-maven-plugin</artifactId>
118                     <versionRange>[0.6,)</versionRange>
119                     <goals>
120                       <goal>prepare-agent</goal>
121                     </goals>
122                   </pluginExecutionFilter>
123                   <action>
124                     <ignore />
125                   </action>
126                 </pluginExecution>
127               </pluginExecutions>
128             </lifecycleMappingMetadata>
129           </configuration>
130         </plugin>
131       </plugins>
132     </pluginManagement>
133   </build>
134 </project>