Merge changes I082f82ac,I951224b0,Icecd1b21,Ifafa74b6,I9b384c72, ...
[transportpce.git] / olm / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright © 2016 Orange 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.mdsal</groupId>
15     <artifactId>binding-parent</artifactId>
16     <version>11.0.6</version>
17     <relativePath/>
18   </parent>
19
20   <groupId>org.opendaylight.transportpce</groupId>
21   <artifactId>transportpce-olm</artifactId>
22   <version>7.0.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <properties>
26     <transportpce.models.version>18.0.0-SNAPSHOT</transportpce.models.version>
27   </properties>
28
29   <dependencyManagement>
30     <dependencies>
31       <dependency>
32         <groupId>org.opendaylight.transportpce.models</groupId>
33         <artifactId>transportpce-models-artifacts</artifactId>
34         <version>${transportpce.models.version}</version>
35         <type>pom</type>
36         <scope>import</scope>
37       </dependency>
38     </dependencies>
39   </dependencyManagement>
40
41   <dependencies>
42     <dependency>
43       <groupId>org.opendaylight.transportpce.models</groupId>
44       <artifactId>openroadm-common-1.2.1</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.transportpce.models</groupId>
48       <artifactId>openroadm-common-2.2.1</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.transportpce.models</groupId>
52       <artifactId>openroadm-common-7.1.0</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.transportpce.models</groupId>
56       <artifactId>openroadm-device-1.2.1</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.transportpce.models</groupId>
60       <artifactId>openroadm-device-2.2.1</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.transportpce.models</groupId>
64       <artifactId>openroadm-device-7.1.0</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.transportpce.models</groupId>
68       <artifactId>openroadm-network-10.1.0</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>${project.groupId}</groupId>
72       <artifactId>transportpce-api</artifactId>
73       <version>${project.version}</version>
74     </dependency>
75     <dependency>
76       <groupId>${project.groupId}</groupId>
77       <artifactId>transportpce-common</artifactId>
78       <version>${project.version}</version>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.yangtools</groupId>
82       <artifactId>concepts</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.yangtools</groupId>
86       <artifactId>yang-common</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
90       <artifactId>rfc8345-ietf-network</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
94       <artifactId>rfc8345-ietf-network-topology</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>org.opendaylight.mdsal</groupId>
98       <artifactId>mdsal-common-api</artifactId>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.mdsal</groupId>
102       <artifactId>yang-binding</artifactId>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.mdsal</groupId>
106       <artifactId>mdsal-binding-api</artifactId>
107     </dependency>
108     <dependency>
109       <groupId>com.google.guava</groupId>
110       <artifactId>guava</artifactId>
111     </dependency>
112
113     <!-- Testing Dependencies -->
114     <dependency>
115       <groupId>${project.groupId}</groupId>
116       <artifactId>test-common</artifactId>
117       <version>${project.version}</version>
118       <scope>test</scope>
119     </dependency>
120     <dependency>
121       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
122       <artifactId>rfc6991-ietf-yang-types</artifactId>
123       <scope>test</scope>
124     </dependency>
125     <dependency>
126       <groupId>org.opendaylight.mdsal</groupId>
127       <artifactId>mdsal-binding-generator</artifactId>
128       <scope>test</scope>
129     </dependency>
130     <dependency>
131       <groupId>com.google.code.findbugs</groupId>
132       <artifactId>jsr305</artifactId>
133       <version>3.0.2</version>
134       <scope>test</scope>
135       <optional>true</optional>
136     </dependency>
137   </dependencies>
138
139   <build>
140     <plugins>
141       <plugin>
142         <groupId>org.codehaus.mojo</groupId>
143         <artifactId>build-helper-maven-plugin</artifactId>
144         <executions>
145           <execution>
146             <id>attach-artifact</id>
147             <goals>
148               <goal>attach-artifact</goal>
149             </goals>
150             <configuration>
151               <artifacts>
152                 <artifact>
153                   <file>${basedir}/src/main/resources/org.opendaylight.transportpce.cfg</file>
154                   <type>cfg</type>
155                   <classifier>config</classifier>
156                 </artifact>
157               </artifacts>
158             </configuration>
159           </execution>
160         </executions>
161       </plugin>
162     </plugins>
163   </build>
164 </project>