Reorganize features to remove unnecessary poms
[integration/distribution.git] / features-test / 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.4.0-SNAPSHOT</version>
17       <relativePath>../../</relativePath>
18    </parent>
19    <artifactId>features-integration-test</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.integration</groupId>
28       <artifactId>features-integration-index</artifactId>
29       <version>${project.version}</version>
30       <classifier>features</classifier>
31       <type>xml</type>
32     </dependency>
33
34     <!-- test to validate features.xml -->
35     <dependency>
36       <groupId>org.opendaylight.odlparent</groupId>
37       <artifactId>features-test</artifactId>
38       <version>1.6.0-SNAPSHOT</version>
39     </dependency>
40     <dependency>
41       <groupId>junit</groupId>
42       <artifactId>junit-dep</artifactId>
43       <scope>test</scope>
44     </dependency>
45     <!-- dependency for opendaylight-karaf-empty for use by testing -->
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>opendaylight-karaf-empty</artifactId>
49       <version>1.6.0-SNAPSHOT</version>
50       <type>zip</type>
51     </dependency>
52    </dependencies>
53    <build>
54       <resources>
55          <resource>
56             <directory>src/main/resources</directory>
57             <filtering>true</filtering>
58          </resource>
59       </resources>
60       <plugins>
61          <plugin>
62             <groupId>org.apache.karaf.tooling</groupId>
63             <artifactId>karaf-maven-plugin</artifactId>
64             <extensions>true</extensions>
65             <executions>
66                <execution>
67                   <id>features-create-kar</id>
68                   <goals>
69                      <goal>features-create-kar</goal>
70                   </goals>
71                   <configuration>
72                      <featuresFile>${project.build.directory}/classes/${features.file}</featuresFile>
73                   </configuration>
74                </execution>
75             </executions>
76         <!-- There is no useful configuration for the kar mojo. The features-generate-descriptor mojo configuration may be useful -->
77          </plugin>
78          <plugin>
79             <groupId>org.apache.maven.plugins</groupId>
80             <artifactId>maven-resources-plugin</artifactId>
81             <executions>
82                <execution>
83                   <id>filter</id>
84                   <phase>generate-resources</phase>
85                   <goals>
86                      <goal>resources</goal>
87                   </goals>
88                </execution>
89             </executions>
90          </plugin>
91          <plugin>
92             <groupId>org.codehaus.mojo</groupId>
93             <artifactId>build-helper-maven-plugin</artifactId>
94             <executions>
95                <execution>
96                   <id>attach-artifacts</id>
97                   <phase>package</phase>
98                   <goals>
99                      <goal>attach-artifact</goal>
100                   </goals>
101                   <configuration>
102                      <artifacts>
103                         <artifact>
104                            <file>${project.build.directory}/classes/${features.file}</file>
105                            <type>xml</type>
106                            <classifier>features</classifier>
107                         </artifact>
108                      </artifacts>
109                   </configuration>
110                </execution>
111             </executions>
112          </plugin>
113          <plugin>
114             <groupId>org.apache.maven.plugins</groupId>
115             <artifactId>maven-surefire-plugin</artifactId>
116             <configuration>
117               <systemPropertyVariables>
118                 <karaf.distro.groupId>org.opendaylight.controller</karaf.distro.groupId>
119                 <karaf.distro.artifactId>opendaylight-karaf-empty</karaf.distro.artifactId>
120                 <karaf.distro.version>1.6.0-SNAPSHOT</karaf.distro.version>
121               </systemPropertyVariables>
122               <dependenciesToScan>
123                <dependency>org.opendaylight.odlparent:features-test</dependency>
124               </dependenciesToScan>
125             </configuration>
126           </plugin>
127       </plugins>
128    </build>
129 </project>