mv BP XML from org/opendaylight to OSGI-INF/
[transportpce.git] / 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
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.mdsal</groupId>
14     <artifactId>binding-parent</artifactId>
15     <version>3.0.6</version>
16     <relativePath/>
17   </parent>
18
19   <groupId>org.opendaylight.transportpce</groupId>
20   <artifactId>transportpce-ordmodels</artifactId>
21   <version>0.3.0-SNAPSHOT</version>
22   <packaging>pom</packaging>
23
24   <modules>
25     <module>common</module>
26     <module>device</module>
27     <module>network</module>
28     <module>service</module>
29   </modules>
30
31   <build>
32     <plugins>
33       <plugin>
34         <groupId>org.apache.maven.plugins</groupId>
35         <artifactId>maven-deploy-plugin</artifactId>
36         <configuration>
37           <skip>true</skip>
38         </configuration>
39       </plugin>
40       <plugin>
41         <groupId>org.apache.maven.plugins</groupId>
42         <artifactId>maven-install-plugin</artifactId>
43         <configuration>
44           <skip>true</skip>
45         </configuration>
46       </plugin>
47       <plugin>
48         <groupId>org.apache.maven.plugins</groupId>
49         <artifactId>maven-javadoc-plugin</artifactId>
50         <configuration>
51           <sourcepath>*/target/generated-sources/mdsal-binding/*</sourcepath>
52           <excludePackageNames>*</excludePackageNames>
53         </configuration>
54       </plugin>
55 <!-- skipping test since this is a util project / folder -->
56       <plugin>
57         <groupId>org.apache.maven.plugins</groupId>
58         <artifactId>maven-surefire-plugin</artifactId>
59         <version>2.18.1</version>
60         <configuration>
61           <skipTests>true</skipTests>
62         </configuration>
63       </plugin>
64     </plugins>
65   </build>
66
67   <reporting>
68     <plugins>
69       <plugin>
70         <groupId>org.apache.maven.plugins</groupId>
71         <artifactId>maven-javadoc-plugin</artifactId>
72         <configuration>
73           <sourcepath>*/target/generated-sources/mdsal-binding/*</sourcepath>
74           <excludePackageNames>*</excludePackageNames>
75         </configuration>
76       </plugin>
77     </plugins>
78   </reporting>
79
80   <dependencyManagement>
81     <dependencies>
82       <dependency>
83         <groupId>org.opendaylight.netconf</groupId>
84         <artifactId>netconf-artifacts</artifactId>
85         <version>1.6.0-SNAPSHOT</version>
86         <type>pom</type>
87         <scope>import</scope>
88       </dependency>
89       <dependency>
90         <groupId>org.opendaylight.mdsal.model</groupId>
91         <artifactId>mdsal-model-artifacts</artifactId>
92         <version>0.13.2-SNAPSHOT</version>
93         <type>pom</type>
94         <scope>import</scope>
95       </dependency>
96     </dependencies>
97   </dependencyManagement>
98
99   <dependencies>
100     <dependency>
101       <groupId>org.opendaylight.netconf</groupId>
102       <artifactId>ietf-netconf</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
106       <artifactId>rfc6991-ietf-inet-types</artifactId>
107       <version>1.2.6-SNAPSHOT</version>
108     </dependency>
109     <dependency>
110       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
111       <artifactId>rfc6991-ietf-yang-types</artifactId>
112       <version>1.2.6-SNAPSHOT</version>
113     </dependency>
114     <dependency>
115       <groupId>org.opendaylight.mdsal.model</groupId>
116       <artifactId>iana-afn-safi</artifactId>
117       <version>2013.07.04.15.6</version>
118       <type>pom</type>
119     </dependency>
120     <dependency>
121       <groupId>org.opendaylight.mdsal.model</groupId>
122       <artifactId>ietf-access-control-list</artifactId>
123       <version>0.13.6-SNAPSHOT</version>
124     </dependency>
125     <!--dependency>
126       <groupId>org.opendaylight.mdsal.model</groupId>
127       <artifactId>iana-if-type-2014-05-08</artifactId>
128       <version>2014.05.08.13.2-SNAPSHOT</version>
129     </dependency>
130     <dependency>
131       <groupId>org.opendaylight.mdsal.model</groupId>
132       <artifactId>ietf-interfaces</artifactId>
133       <version>2014.05.08.13.2-SNAPSHOT</version>
134     </dependency-->
135     <dependency>
136       <groupId>org.opendaylight.mdsal.binding.model.iana</groupId>
137       <artifactId>iana-if-type</artifactId>
138       <version>1.0.6-SNAPSHOT</version>
139     </dependency>
140     <dependency>
141       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
142       <artifactId>rfc7223</artifactId>
143       <version>1.2.6-SNAPSHOT</version>
144     </dependency>
145     <dependency>
146       <groupId>org.opendaylight.mdsal.model</groupId>
147       <artifactId>ietf-packet-fields</artifactId>
148       <version>0.13.6-SNAPSHOT</version>
149     </dependency>
150   </dependencies>
151
152 </project>