Removing OpenContrail renderer from the build.
[groupbasedpolicy.git] / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2014 Cisco Systems, Inc. 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 --><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">
9   <modelVersion>4.0.0</modelVersion>
10   <parent>
11     <artifactId>commons.groupbasedpolicy</artifactId>
12     <groupId>org.opendaylight.groupbasedpolicy</groupId>
13     <version>0.2.0-SNAPSHOT</version>
14     <relativePath>../commons/parent</relativePath>
15   </parent>
16   <artifactId>features-groupbasedpolicy</artifactId>
17   <groupId>org.opendaylight.groupbasedpolicy</groupId>
18   <packaging>jar</packaging>
19   <properties>
20     <features.file>features.xml</features.file>
21     <branding.version>1.1.0-SNAPSHOT</branding.version>
22     <karaf.resources.version>1.5.0-SNAPSHOT</karaf.resources.version>
23     <feature.test.version>0.7.0-SNAPSHOT</feature.test.version>
24     <karaf.empty.version>1.5.0-SNAPSHOT</karaf.empty.version>
25     <surefire.version>2.16</surefire.version>
26     <yangtools.version>0.7.0-SNAPSHOT</yangtools.version>
27   </properties>
28   <dependencies>
29     <dependency>
30       <groupId>org.opendaylight.yangtools</groupId>
31       <artifactId>features-yangtools</artifactId>
32       <version>${yangtools.version}</version>
33       <classifier>features</classifier>
34       <type>xml</type>
35     </dependency>
36      <dependency>
37        <groupId>org.opendaylight.controller</groupId>
38        <artifactId>features-nsf</artifactId>
39        <version>0.5.0-SNAPSHOT</version>
40        <classifier>features</classifier>
41        <type>xml</type>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>features-mdsal</artifactId>
46       <version>${mdsal.version}</version>
47       <classifier>features</classifier>
48       <type>xml</type>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.openflowplugin</groupId>
52       <artifactId>features-openflowplugin</artifactId>
53       <version>${openflowplugin.distribution.version}</version>
54       <classifier>features</classifier>
55       <type>xml</type>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.groupbasedpolicy</groupId>
59       <artifactId>groupbasedpolicy</artifactId>
60       <version>${project.version}</version>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.groupbasedpolicy</groupId>
64       <artifactId>opflex-renderer</artifactId>
65       <version>${project.version}</version>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.groupbasedpolicy</groupId>
69       <artifactId>ofoverlay-renderer</artifactId>
70       <version>${project.version}</version>
71     </dependency>
72     <dependency>
73        <groupId>org.opendaylight.controller</groupId>
74        <artifactId>features-base</artifactId>
75        <version>1.5.0-SNAPSHOT</version>
76        <classifier>features</classifier>
77        <type>xml</type>
78     </dependency>
79     <dependency>
80       <groupId>org.opendaylight.odlparent</groupId>
81       <artifactId>features-test</artifactId>
82       <version>${odlparent.features-test.version}</version>
83       <scope>test</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.groupbasedpolicy</groupId>
87       <artifactId>groupbasedpolicy-ofoverlay-config</artifactId>
88       <version>${project.version}</version>
89       <type>xml</type>
90       <classifier>config</classifier>
91     </dependency>
92    <!-- dependency for opendaylight-karaf-empty for use by testing -->
93     <dependency>
94       <groupId>org.opendaylight.controller</groupId>
95       <artifactId>opendaylight-karaf-empty</artifactId>
96       <version>${karaf.empty.version}</version>
97       <type>zip</type>
98     </dependency>
99     <dependency>
100       <groupId>org.opendaylight.openflowplugin</groupId>
101       <artifactId>features-openflowplugin-extension</artifactId>
102       <version>${openflowplugin.distribution.version}</version>
103       <classifier>features</classifier>
104       <type>xml</type>
105     </dependency>
106     <dependency>
107       <groupId>org.opendaylight.openflowplugin</groupId>
108       <artifactId>features-openflowplugin</artifactId>
109       <version>${openflowplugin.distribution.version}</version>
110       <classifier>features</classifier>
111       <type>xml</type>
112     </dependency>
113 <!--
114     <dependency>
115       <groupId>org.opendaylight.ovsdb</groupId>
116       <artifactId>features-openflow-nxm</artifactId>
117       <version>${openflowplugin.distribution.version}</version>
118       <classifier>features</classifier>
119       <type>xml</type>
120     </dependency>
121 -->
122       <!-- Add Pax Exam -->
123     <dependency>
124       <groupId>org.ops4j.pax.exam</groupId>
125       <artifactId>pax-exam</artifactId>
126       <version>${exam.version}</version>
127       <scope>test</scope>
128     </dependency>
129     <dependency>
130       <groupId>org.ops4j.pax.exam</groupId>
131       <artifactId>pax-exam-container-karaf</artifactId>
132       <version>${exam.version}</version>
133       <scope>test</scope>
134     </dependency>
135
136   </dependencies>
137   <build>
138     <resources>
139       <resource>
140         <directory>src/main/resources</directory>
141         <filtering>true</filtering>
142       </resource>
143     </resources>
144     <plugins>
145       <plugin>
146         <groupId>org.apache.maven.plugins</groupId>
147         <artifactId>maven-resources-plugin</artifactId>
148         <executions>
149           <execution>
150             <id>filter</id>
151             <phase>generate-resources</phase>
152             <goals>
153               <goal>resources</goal>
154             </goals>
155             </execution>
156           </executions>
157       </plugin>
158       <plugin>
159         <groupId>org.codehaus.mojo</groupId>
160         <artifactId>build-helper-maven-plugin</artifactId>
161         <executions>
162           <execution>
163             <id>attach-artifacts</id>
164             <phase>package</phase>
165             <goals>
166               <goal>attach-artifact</goal>
167             </goals>
168             <configuration>
169               <artifacts>
170                 <artifact>
171                   <file>${project.build.directory}/classes/${features.file}</file>
172                   <type>xml</type>
173                   <classifier>features</classifier>
174                 </artifact>
175               </artifacts>
176             </configuration>
177           </execution>
178         </executions>
179       </plugin>
180       <plugin>
181         <groupId>org.apache.maven.plugins</groupId>
182         <artifactId>maven-surefire-plugin</artifactId>
183         <version>${surefire.version}</version>
184         <configuration>
185           <systemPropertyVariables>
186             <karaf.distro.groupId>org.opendaylight.controller</karaf.distro.groupId>
187             <karaf.distro.artifactId>opendaylight-karaf-empty</karaf.distro.artifactId>
188             <karaf.distro.version>${karaf.empty.version}</karaf.distro.version>
189           </systemPropertyVariables>
190           <dependenciesToScan>
191             <dependency>org.opendaylight.odlparent:features-test</dependency>
192           </dependenciesToScan>
193         </configuration>
194       </plugin>
195     </plugins>
196   </build>
197   <scm>
198     <connection>scm:git:ssh://git.opendaylight.org:29418/groupbasedpolicy.git</connection>
199     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/groupbasedpolicy.git</developerConnection>
200     <tag>HEAD</tag>
201     <url>https://git.opendaylight.org/gerrit/gitweb?p=groupbasedpolicy.git;a=summary</url>
202   </scm>
203 </project>
204