Abort power setup if setting gainloss fails
[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>13.0.1</version>
15     <relativePath/>
16   </parent>
17
18   <groupId>org.opendaylight.transportpce</groupId>
19   <artifactId>transportpce-nbinotifications</artifactId>
20   <version>10.0.0-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22
23   <properties>
24     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25     <transportpce.models.version>21.0.0-SNAPSHOT</transportpce.models.version>
26     <kafka.version>3.7.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-13.1.0</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.transportpce.models</groupId>
48       <artifactId>tapi-2.4.0</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     <dependency>
102       <groupId>org.osgi</groupId>
103       <artifactId>org.osgi.service.component.annotations</artifactId>
104     </dependency>
105     <dependency>
106       <groupId>org.osgi</groupId>
107       <artifactId>org.osgi.service.metatype.annotations</artifactId>
108     </dependency>
109
110     <!-- Testing Dependencies -->
111     <dependency>
112       <groupId>org.opendaylight.transportpce.models</groupId>
113       <artifactId>openroadm-common-13.1.0</artifactId>
114       <scope>test</scope>
115     </dependency>
116     <dependency>
117       <groupId>${project.groupId}</groupId>
118       <artifactId>test-common</artifactId>
119       <version>${project.version}</version>
120       <scope>test</scope>
121     </dependency>
122     <dependency>
123       <groupId>org.opendaylight.mdsal</groupId>
124       <artifactId>mdsal-binding-generator</artifactId>
125       <scope>test</scope>
126     </dependency>
127     <dependency>
128       <groupId>com.fasterxml.jackson.core</groupId>
129       <artifactId>jackson-databind</artifactId>
130       <scope>test</scope>
131     </dependency>
132     <dependency>
133       <groupId>org.skyscreamer</groupId>
134       <artifactId>jsonassert</artifactId>
135       <version>1.5.1</version>
136       <scope>test</scope>
137     </dependency>
138   </dependencies>
139
140   <build>
141     <plugins>
142       <plugin>
143         <groupId>org.codehaus.mojo</groupId>
144         <artifactId>build-helper-maven-plugin</artifactId>
145         <executions>
146           <execution>
147             <id>attach-dmaap-artifact</id>
148             <goals>
149               <goal>attach-artifact</goal>
150             </goals>
151             <configuration>
152               <artifacts>
153                 <artifact>
154                   <file>${basedir}/src/main/resources/org.opendaylight.transportpce.nbinotifications.cfg</file>
155                   <type>cfg</type>
156                   <classifier>config</classifier>
157                 </artifact>
158               </artifacts>
159             </configuration>
160           </execution>
161         </executions>
162       </plugin>
163     </plugins>
164   </build>
165 </project>