Merge changes I8eb61ed9,I09e66c9f,Ic4c8c6f5
[packetcable.git] / features-packetcable / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
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 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">
7    <modelVersion>4.0.0</modelVersion>
8    <parent>
9     <artifactId>packetcable-plugin</artifactId>
10     <groupId>org.opendaylight.controller.packetcable</groupId>
11     <version>1.1-SNAPSHOT</version>
12   </parent>
13    <!--
14     Necessary TODO: Hookup your parent pom here, else you will not get necessary versions,
15     maven repos etc.  If you run this archetype in a subdirectory of your project, it
16     will pick the pom.xml from the parent directory as the parent pom, which may or may
17     not be correct.
18   -->
19    <artifactId>features-packetcable</artifactId>
20    <groupId>org.opendaylight.controller.packetcable</groupId>
21    <!-- Optional TODO: Uncomment version if you are not using a parent pom.xml
22    <version>1.1-SNAPSHOT</version>
23    -->
24    <packaging>jar</packaging>
25    <properties>
26       <features.file>features.xml</features.file>
27       <!-- Optional TODO: Move these properties to your parent pom and possibly
28             DependencyManagement section of your parent pom -->
29       <branding.version>1.0.0-SNAPSHOT</branding.version>
30       <karaf.resources.version>1.4.2-SNAPSHOT</karaf.resources.version>
31       <karaf.version>3.0.1</karaf.version>
32       <feature.test.version>0.6.2-SNAPSHOT</feature.test.version>
33       <karaf.empty.version>1.4.2-SNAPSHOT</karaf.empty.version>
34       <surefire.version>2.16</surefire.version>
35    </properties>
36    <dependencies>
37     <!--
38       Necessary TODO: Put dependencies on any feature repos
39       you use in your features.xml file.
40
41       Note: they will need to be <type>xml</xml>
42       and <classifier>features</classifier>.
43       One other thing to watch for is to make sure they are
44       <scope>compile</compile>, which they should be by default,
45       but be cautious lest they be at a different scope in a parent pom.
46
47       Examples:
48     -->
49         <dependency>
50           <groupId>org.opendaylight.yangtools</groupId>
51           <artifactId>features-yangtools</artifactId>
52           <version>0.6.2-SNAPSHOT</version>
53           <classifier>features</classifier>
54           <type>xml</type>
55         </dependency>
56         <dependency>
57           <groupId>org.opendaylight.controller</groupId>
58           <artifactId>features-mdsal</artifactId>
59           <version>1.1-SNAPSHOT</version>
60           <classifier>features</classifier>
61           <type>xml</type>
62         </dependency>
63         <dependency>
64           <groupId>org.opendaylight.openflowplugin</groupId>
65           <artifactId>features-openflowplugin</artifactId>
66           <version>0.0.3-SNAPSHOT</version>
67           <classifier>features</classifier>
68           <type>xml</type>
69         </dependency>
70       <dependency>
71       <groupId>org.opendaylight.controller</groupId>
72       <artifactId>features-flow</artifactId>
73       <version>${mdsal.version}</version>
74       <classifier>features</classifier>
75       <type>xml</type>
76       </dependency>
77
78
79
80     <!--
81       Necessary TODO: Put dependencies for bundles directly referenced
82       in your features.xml file.  For every <bundle> reference in your
83       features.xml file, you need a corresponding dependency here.
84
85       Examples:
86     -->
87       <dependency>
88         <groupId>org.opendaylight.controller.packetcable</groupId>
89         <artifactId>packetcable-consumer</artifactId>
90         <version>${project.version}</version>
91       </dependency>
92       <dependency>
93         <groupId>org.opendaylight.controller.packetcable</groupId>
94         <artifactId>packetcable-provider</artifactId>
95         <version>${project.version}</version>
96       </dependency>
97       <dependency>
98         <groupId>org.opendaylight.controller.packetcable</groupId>
99         <artifactId>packetcable-model</artifactId>
100         <version>${project.version}</version>
101       </dependency>
102
103     <!--
104       Necessary TODO: Put dependencies for configfiles directly referenced
105       in your features.xml file.  For every <configfile> reference in your
106       features.xml file, you need a corresponding dependency here.
107
108       Example (presuming here version is coming from the parent pom):
109       <dependency>
110         <groupId>org.opendaylight.controller.packetcable</groupId>
111         <artifactId>packetcable-config</artifactId>
112         <version>${project.version}</version>
113         <type>xml</type>
114         <classifier>config</classifier>
115       </dependency>
116     -->
117
118     <!--
119       Optional TODO: Remove TODO comments.
120     -->
121     <!-- test to validate features.xml -->
122     <dependency>
123       <groupId>org.opendaylight.yangtools</groupId>
124       <artifactId>features-test</artifactId>
125       <version>${feature.test.version}</version>
126       <scope>test</scope>
127     </dependency>
128     <!-- dependency for opendaylight-karaf-empty for use by testing -->
129     <dependency>
130       <groupId>org.opendaylight.controller</groupId>
131       <artifactId>opendaylight-karaf-empty</artifactId>
132       <version>${karaf.empty.version}</version>
133       <type>zip</type>
134     </dependency>
135     <!-- Uncomment this if you get an error : java.lang.NoSuchMethodError: org.slf4j.helpers.MessageFormatter.format(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)Lorg/slf4j/helpers/FormattingTuple;
136     <dependency>
137       <groupId>org.slf4j</groupId>
138       <artifactId>slf4j-simple</artifactId>
139       <version>1.7.2</version>
140     </dependency>
141     -->
142
143    </dependencies>
144    <build>
145       <resources>
146          <resource>
147             <directory>src/main/resources</directory>
148             <filtering>true</filtering>
149          </resource>
150       </resources>
151       <plugins>
152          <plugin>
153             <groupId>org.apache.maven.plugins</groupId>
154             <artifactId>maven-resources-plugin</artifactId>
155             <executions>
156                <execution>
157                   <id>filter</id>
158                   <phase>generate-resources</phase>
159                   <goals>
160                      <goal>resources</goal>
161                   </goals>
162                </execution>
163             </executions>
164          </plugin>
165          <plugin>
166             <groupId>org.codehaus.mojo</groupId>
167             <artifactId>build-helper-maven-plugin</artifactId>
168             <executions>
169                <execution>
170                   <id>attach-artifacts</id>
171                   <phase>package</phase>
172                   <goals>
173                      <goal>attach-artifact</goal>
174                   </goals>
175                   <configuration>
176                      <artifacts>
177                         <artifact>
178                            <file>${project.build.directory}/classes/${features.file}</file>
179                            <type>xml</type>
180                            <classifier>features</classifier>
181                         </artifact>
182                      </artifacts>
183                   </configuration>
184                </execution>
185             </executions>
186          </plugin>
187          <plugin>
188             <groupId>org.apache.maven.plugins</groupId>
189             <artifactId>maven-surefire-plugin</artifactId>
190             <version>${surefire.version}</version>
191             <configuration>
192               <systemPropertyVariables>
193                 <karaf.distro.groupId>org.opendaylight.controller</karaf.distro.groupId>
194                 <karaf.distro.artifactId>opendaylight-karaf-empty</karaf.distro.artifactId>
195                 <karaf.distro.version>${karaf.empty.version}</karaf.distro.version>
196               </systemPropertyVariables>
197               <dependenciesToScan>
198                <dependency>org.opendaylight.yangtools:features-test</dependency>
199               </dependenciesToScan>
200             </configuration>
201           </plugin>
202       </plugins>
203    </build>
204    <scm>
205       <connection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</connection>
206       <developerConnection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</developerConnection>
207       <tag>HEAD</tag>
208       <url>https://git.opendaylight.org/gerrit/gitweb?p=packetcable.git;a=summary</url>
209    </scm>
210 </project>