Adding controller's adsal-compatibility features
[integration/distribution.git] / features / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12    <modelVersion>4.0.0</modelVersion>
13    <parent>
14       <groupId>org.opendaylight.integration</groupId>
15       <artifactId>root</artifactId>
16       <version>0.2.0-SNAPSHOT</version>
17       <relativePath>../</relativePath>
18    </parent>
19    <artifactId>features-integration</artifactId>
20    <packaging>jar</packaging>
21    <properties>
22       <features.file>features.xml</features.file>
23    </properties>
24    <dependencies>
25     <!-- dependencies on feature repos -->
26     <dependency>
27       <groupId>org.opendaylight.controller</groupId>
28       <artifactId>features-mdsal</artifactId>
29       <version>${feature.mdsal.version}</version>
30       <classifier>features</classifier>
31       <type>xml</type>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.controller</groupId>
35       <artifactId>features-adsal</artifactId>
36       <classifier>features</classifier>
37       <type>xml</type>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.controller</groupId>
41       <artifactId>features-nsf</artifactId>
42       <classifier>features</classifier>
43       <type>xml</type>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.openflowplugin</groupId>
47       <artifactId>features-openflowplugin</artifactId>
48       <version>0.0.3-SNAPSHOT</version>
49       <classifier>features</classifier>
50       <type>xml</type>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.l2switch</groupId>
54       <artifactId>features-l2switch</artifactId>
55       <version>0.1.0-SNAPSHOT</version>
56       <classifier>features</classifier>
57       <type>xml</type>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller</groupId>
61       <artifactId>features-adsal-compatibility</artifactId>
62       <version>1.4.2-SNAPSHOT</version>
63       <classifier>features</classifier>
64       <type>xml</type>
65     </dependency>
66     <!-- test to validate features.xml -->
67     <dependency>
68       <groupId>org.opendaylight.yangtools</groupId>
69       <artifactId>features-test</artifactId>
70       <version>0.6.2-SNAPSHOT</version>
71     </dependency>
72     <!-- dependency for opendaylight-karaf-empty for use by testing -->
73     <dependency>
74       <groupId>org.opendaylight.controller</groupId>
75       <artifactId>opendaylight-karaf-empty</artifactId>
76       <version>1.4.2-SNAPSHOT</version>
77       <type>zip</type>
78     </dependency>
79    </dependencies>
80    <build>
81       <resources>
82          <resource>
83             <directory>src/main/resources</directory>
84             <filtering>true</filtering>
85          </resource>
86       </resources>
87       <plugins>
88          <plugin>
89             <groupId>org.apache.karaf.tooling</groupId>
90             <artifactId>karaf-maven-plugin</artifactId>
91             <version>${karaf.version}</version>
92             <extensions>true</extensions>
93             <executions>
94                <execution>
95                   <id>features-create-kar</id>
96                   <goals>
97                      <goal>features-create-kar</goal>
98                   </goals>
99                   <configuration>
100                      <featuresFile>${project.build.directory}/classes/${features.file}</featuresFile>
101                   </configuration>
102                </execution>
103             </executions>
104         <!-- There is no useful configuration for the kar mojo. The features-generate-descriptor mojo configuration may be useful -->
105          </plugin>
106          <plugin>
107             <groupId>org.apache.maven.plugins</groupId>
108             <artifactId>maven-resources-plugin</artifactId>
109             <executions>
110                <execution>
111                   <id>filter</id>
112                   <phase>generate-resources</phase>
113                   <goals>
114                      <goal>resources</goal>
115                   </goals>
116                </execution>
117             </executions>
118          </plugin>
119          <plugin>
120             <groupId>org.codehaus.mojo</groupId>
121             <artifactId>build-helper-maven-plugin</artifactId>
122             <executions>
123                <execution>
124                   <id>attach-artifacts</id>
125                   <phase>package</phase>
126                   <goals>
127                      <goal>attach-artifact</goal>
128                   </goals>
129                   <configuration>
130                      <artifacts>
131                         <artifact>
132                            <file>${project.build.directory}/classes/${features.file}</file>
133                            <type>xml</type>
134                            <classifier>features</classifier>
135                         </artifact>
136                      </artifacts>
137                   </configuration>
138                </execution>
139             </executions>
140          </plugin>
141          <plugin>
142             <groupId>org.apache.maven.plugins</groupId>
143             <artifactId>maven-surefire-plugin</artifactId>
144             <version>2.16</version>
145             <configuration>
146               <systemPropertyVariables>
147                 <karaf.distro.groupId>org.opendaylight.controller</karaf.distro.groupId>
148                 <karaf.distro.artifactId>opendaylight-karaf-empty</karaf.distro.artifactId>
149                 <karaf.distro.version>1.4.2-SNAPSHOT</karaf.distro.version>
150               </systemPropertyVariables>
151               <dependenciesToScan>
152                <dependency>org.opendaylight.yangtools:features-test</dependency>
153               </dependenciesToScan>
154             </configuration>
155           </plugin>
156       </plugins>
157    </build>
158 </project>