Merge changes I082f82ac,I951224b0,Icecd1b21,Ifafa74b6,I9b384c72, ...
[transportpce.git] / nbinotifications / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright © 2020 Orange and others. All rights reserved. This program
3     and the accompanying materials are made available under the terms of the
4     Eclipse Public License v1.0 which accompanies this distribution, and is available
5     at http://www.eclipse.org/legal/epl-v10.html INTERNAL -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0"
7     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9   <modelVersion>4.0.0</modelVersion>
10
11   <parent>
12     <groupId>org.opendaylight.mdsal</groupId>
13     <artifactId>binding-parent</artifactId>
14     <version>11.0.6</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.transportpce</groupId>
19   <artifactId>transportpce-nbinotifications</artifactId>
20   <version>7.0.0-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22
23   <properties>
24     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25     <transportpce.models.version>18.0.0-SNAPSHOT</transportpce.models.version>
26     <kafka.version>3.0.0</kafka.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-service-10.1.0</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.transportpce.models</groupId>
48       <artifactId>tapi-2.1.1</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>${project.groupId}</groupId>
52       <artifactId>transportpce-api</artifactId>
53       <version>${project.version}</version>
54     </dependency>
55     <dependency>
56       <groupId>${project.groupId}</groupId>
57       <artifactId>transportpce-common</artifactId>
58       <version>${project.version}</version>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.yangtools</groupId>
62       <artifactId>concepts</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.yangtools</groupId>
66       <artifactId>yang-common</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.yangtools</groupId>
70       <artifactId>yang-data-api</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.yangtools</groupId>
74       <artifactId>yang-data-codec-gson</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.mdsal</groupId>
78       <artifactId>yang-binding</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.mdsal</groupId>
82       <artifactId>mdsal-common-api</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.mdsal</groupId>
86       <artifactId>mdsal-binding-api</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.mdsal</groupId>
90       <artifactId>mdsal-binding-dom-codec-spi</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>com.google.guava</groupId>
94       <artifactId>guava</artifactId>
95     </dependency>
96     <dependency>
97       <groupId>org.apache.kafka</groupId>
98       <artifactId>kafka-clients</artifactId>
99       <version>${kafka.version}</version>
100     </dependency>
101
102     <!-- Testing Dependencies -->
103     <dependency>
104       <groupId>org.opendaylight.transportpce.models</groupId>
105       <artifactId>openroadm-common-10.1.0</artifactId>
106       <scope>test</scope>
107     </dependency>
108     <dependency>
109       <groupId>${project.groupId}</groupId>
110       <artifactId>test-common</artifactId>
111       <version>${project.version}</version>
112       <scope>test</scope>
113     </dependency>
114     <dependency>
115       <groupId>org.opendaylight.mdsal</groupId>
116       <artifactId>mdsal-binding-generator</artifactId>
117       <scope>test</scope>
118     </dependency>
119     <dependency>
120       <groupId>com.fasterxml.jackson.core</groupId>
121       <artifactId>jackson-databind</artifactId>
122       <scope>test</scope>
123     </dependency>
124   </dependencies>
125
126   <build>
127     <plugins>
128       <plugin>
129         <groupId>org.codehaus.mojo</groupId>
130         <artifactId>build-helper-maven-plugin</artifactId>
131         <executions>
132           <execution>
133             <id>attach-dmaap-artifact</id>
134             <goals>
135               <goal>attach-artifact</goal>
136             </goals>
137             <configuration>
138               <artifacts>
139                 <artifact>
140                   <file>${basedir}/src/main/resources/org.opendaylight.transportpce.nbinotifications.cfg</file>
141                   <type>cfg</type>
142                   <classifier>config</classifier>
143                 </artifact>
144               </artifacts>
145             </configuration>
146           </execution>
147         </executions>
148       </plugin>
149     </plugins>
150   </build>
151 </project>