skip tests on umbrella and utils projects pom
[transportpce.git] / features / odl-transportpce-ordmodels / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Orange 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 INTERNAL
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.odlparent</groupId>
14     <artifactId>single-feature-parent</artifactId>
15     <version>2.0.4</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.transportpce</groupId>
20   <artifactId>odl-transportpce-ordmodels</artifactId>
21   <version>0.2.0</version>
22   <packaging>feature</packaging>
23
24   <properties>
25     <mdsal.model.version>0.11.0</mdsal.model.version>
26     <configfile.directory>etc/opendaylight/karaf</configfile.directory>
27   </properties>
28
29
30 <name>OpenDaylight :: transportpce :: ordmodels</name>
31
32   <dependencies>
33     <dependency>
34       <groupId>org.opendaylight.mdsal.model</groupId>
35       <artifactId>odl-mdsal-models</artifactId>
36       <version>${mdsal.model.version}</version>
37       <classifier>features</classifier>
38       <type>xml</type>
39     </dependency>
40     <dependency>
41       <groupId>${project.groupId}.ordmodels</groupId>
42       <artifactId>transportpce-ordmodels-common</artifactId>
43       <version>${project.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>${project.groupId}.ordmodels</groupId>
47       <artifactId>transportpce-ordmodels-network</artifactId>
48       <version>${project.version}</version>
49     </dependency>
50     <dependency>
51       <groupId>${project.groupId}.ordmodels</groupId>
52       <artifactId>transportpce-ordmodels-service</artifactId>
53       <version>${project.version}</version>
54     </dependency>
55     <dependency>
56       <groupId>${project.groupId}.ordmodels</groupId>
57       <artifactId>transportpce-ordmodels-device</artifactId>
58       <version>${project.version}</version>
59     </dependency>
60   </dependencies>
61
62 <!-- skipping test since this is a util project / folder -->
63   <build>
64     <plugins>
65       <plugin>
66         <groupId>org.apache.maven.plugins</groupId>
67         <artifactId>maven-surefire-plugin</artifactId>
68         <version>2.18.1</version>
69         <configuration>
70           <skipTests>true</skipTests>
71         </configuration>
72       </plugin>
73     </plugins>
74   </build>
75
76 </project>