Incrementing versions by 0.1.0 of packetcable for post-helium master branch
[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</artifactId>
10     <groupId>org.opendaylight.packetcable</groupId>
11     <version>1.2.0-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.packetcable</groupId>
21    <!-- Optional Uncomment version if you are not using a parent pom.xml
22    <version>1.2.0-SNAPSHOT</version>
23    -->
24    <packaging>jar</packaging>
25    <properties>
26       <features.file>features.xml</features.file>
27       <!-- Optional: Move these properties to your parent pom and possibly
28             DependencyManagement section of your parent pom -->
29       <branding.version>1.1.0-SNAPSHOT</branding.version>
30       <karaf.resources.version>1.5.0-SNAPSHOT</karaf.resources.version>
31       <karaf.version>3.0.1</karaf.version>
32       <feature.test.version>0.7.0-SNAPSHOT</feature.test.version>
33       <karaf.empty.version>1.5.0-SNAPSHOT</karaf.empty.version>
34       <surefire.version>2.16</surefire.version>
35    </properties>
36    <dependencies>
37     <!--
38       Necessary: 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.7.0-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.2.0-SNAPSHOT</version>
60           <classifier>features</classifier>
61           <type>xml</type>
62         </dependency>
63         <dependency>
64           <groupId>org.opendaylight.packetcable</groupId>
65           <artifactId>packetcable-config</artifactId>
66           <version>${project.version}</version>
67           <classifier>config</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.packetcable</groupId>
89         <artifactId>packetcable-consumer</artifactId>
90         <version>${project.version}</version>
91       </dependency>
92       <dependency>
93         <groupId>org.opendaylight.packetcable</groupId>
94         <artifactId>packetcable-provider</artifactId>
95         <version>${project.version}</version>
96       </dependency>
97       <dependency>
98         <groupId>org.opendaylight.packetcable</groupId>
99         <artifactId>packetcable-model</artifactId>
100         <version>${project.version}</version>
101       </dependency>
102       <dependency>
103         <groupId>org.opendaylight.packetcable</groupId>
104         <artifactId>packetcable-driver</artifactId>
105         <version>${project.version}</version>
106       </dependency>
107
108     <!--
109       Put dependencies for configfiles directly referenced
110       in your features.xml file.  For every <configfile> reference in your
111       features.xml file, you need a corresponding dependency here.
112
113       Example (presuming here version is coming from the parent pom):
114       <dependency>
115         <groupId>org.opendaylight.packetcable</groupId>
116         <artifactId>packetcable-config</artifactId>
117         <version>${project.version}</version>
118         <type>xml</type>
119         <classifier>config</classifier>
120       </dependency>
121     -->
122
123     <!--
124       Optional TODO: Remove TODO comments.
125     -->
126     <!-- test to validate features.xml -->
127     <dependency>
128       <groupId>org.opendaylight.yangtools</groupId>
129       <artifactId>features-test</artifactId>
130       <version>${feature.test.version}</version>
131       <scope>test</scope>
132     </dependency>
133     <!-- dependency for opendaylight-karaf-empty for use by testing -->
134     <dependency>
135       <groupId>org.opendaylight.controller</groupId>
136       <artifactId>opendaylight-karaf-empty</artifactId>
137       <version>${karaf.empty.version}</version>
138       <type>zip</type>
139     </dependency>
140     <!-- 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;
141     <dependency>
142       <groupId>org.slf4j</groupId>
143       <artifactId>slf4j-simple</artifactId>
144       <version>1.7.2</version>
145     </dependency>
146     -->
147
148    </dependencies>
149    <build>
150       <resources>
151          <resource>
152             <directory>src/main/resources</directory>
153             <filtering>true</filtering>
154          </resource>
155       </resources>
156       <plugins>
157          <plugin>
158             <groupId>org.apache.maven.plugins</groupId>
159             <artifactId>maven-resources-plugin</artifactId>
160             <executions>
161                <execution>
162                   <id>filter</id>
163                   <phase>generate-resources</phase>
164                   <goals>
165                      <goal>resources</goal>
166                   </goals>
167                </execution>
168             </executions>
169          </plugin>
170          <plugin>
171             <groupId>org.codehaus.mojo</groupId>
172             <artifactId>build-helper-maven-plugin</artifactId>
173             <executions>
174                <execution>
175                   <id>attach-artifacts</id>
176                   <phase>package</phase>
177                   <goals>
178                      <goal>attach-artifact</goal>
179                   </goals>
180                   <configuration>
181                      <artifacts>
182                         <artifact>
183                            <file>${project.build.directory}/classes/${features.file}</file>
184                            <type>xml</type>
185                            <classifier>features</classifier>
186                         </artifact>
187                      </artifacts>
188                   </configuration>
189                </execution>
190             </executions>
191          </plugin>
192          <plugin>
193             <groupId>org.apache.maven.plugins</groupId>
194             <artifactId>maven-surefire-plugin</artifactId>
195             <version>${surefire.version}</version>
196             <configuration>
197               <systemPropertyVariables>
198                 <karaf.distro.groupId>org.opendaylight.controller</karaf.distro.groupId>
199                 <karaf.distro.artifactId>opendaylight-karaf-empty</karaf.distro.artifactId>
200                 <karaf.distro.version>${karaf.empty.version}</karaf.distro.version>
201               </systemPropertyVariables>
202               <dependenciesToScan>
203                <dependency>org.opendaylight.yangtools:features-test</dependency>
204               </dependenciesToScan>
205             </configuration>
206           </plugin>
207       </plugins>
208    </build>
209    <scm>
210       <connection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</connection>
211       <developerConnection>scm:git:ssh://git.opendaylight.org:29418/packetcable.git</developerConnection>
212       <tag>HEAD</tag>
213       <url>https://git.opendaylight.org/gerrit/gitweb?p=packetcable.git;a=summary</url>
214    </scm>
215 </project>