Add perltidy to pre-commit linters
[transportpce.git] / dmaap-client / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright © 2021 Orange and others. All rights reserved. This program and the accompanying materials
3     are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution,
4     and is available at http://www.eclipse.org/legal/epl-v10.html -->
5 <project xmlns="http://maven.apache.org/POM/4.0.0"
6     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
8   <modelVersion>4.0.0</modelVersion>
9   <parent>
10     <groupId>org.opendaylight.mdsal</groupId>
11     <artifactId>binding-parent</artifactId>
12     <version>11.0.9</version>
13     <relativePath/>
14   </parent>
15
16   <groupId>org.opendaylight.transportpce</groupId>
17   <artifactId>transportpce-dmaap-client</artifactId>
18   <version>8.0.0-SNAPSHOT</version>
19   <packaging>bundle</packaging>
20   <description>client to send message to Dmaap message router</description>
21
22   <properties>
23     <transportpce.models.version>18.1.0</transportpce.models.version>
24     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25   </properties>
26
27   <dependencyManagement>
28     <dependencies>
29       <dependency>
30         <groupId>org.opendaylight.transportpce.models</groupId>
31         <artifactId>transportpce-models-artifacts</artifactId>
32         <version>${transportpce.models.version}</version>
33         <type>pom</type>
34         <scope>import</scope>
35       </dependency>
36     </dependencies>
37   </dependencyManagement>
38
39   <dependencies>
40     <dependency>
41       <groupId>org.opendaylight.transportpce.models</groupId>
42       <artifactId>openroadm-common-10.1.0</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.transportpce.models</groupId>
46       <artifactId>openroadm-service-10.1.0</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>${project.groupId}</groupId>
50       <artifactId>transportpce-api</artifactId>
51       <version>${project.version}</version>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.yangtools</groupId>
55       <artifactId>concepts</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.yangtools</groupId>
59       <artifactId>yang-common</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.mdsal</groupId>
63       <artifactId>mdsal-binding-api</artifactId>
64       <scope>compile</scope>
65     </dependency>
66     <dependency>
67       <groupId>org.glassfish.jersey.core</groupId>
68       <artifactId>jersey-common</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.glassfish.jersey.core</groupId>
72       <artifactId>jersey-client</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.glassfish.jersey.ext</groupId>
76       <artifactId>jersey-proxy-client</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.glassfish.jersey.media</groupId>
80       <artifactId>jersey-media-json-jackson</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>com.fasterxml.jackson.core</groupId>
84       <artifactId>jackson-annotations</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>com.fasterxml.jackson.core</groupId>
88       <artifactId>jackson-databind</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>com.fasterxml.jackson.core</groupId>
92       <artifactId>jackson-core</artifactId>
93     </dependency>
94     <dependency>
95       <groupId>com.fasterxml.jackson.datatype</groupId>
96       <artifactId>jackson-datatype-jsr310</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>jakarta.ws.rs</groupId>
100       <artifactId>jakarta.ws.rs-api</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.osgi</groupId>
104       <artifactId>org.osgi.service.component.annotations</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>org.osgi</groupId>
108       <artifactId>org.osgi.service.metatype.annotations</artifactId>
109     </dependency>
110
111     <!-- Testing dependencies -->
112     <dependency>
113       <groupId>org.glassfish.jersey.inject</groupId>
114       <artifactId>jersey-hk2</artifactId>
115       <scope>test</scope>
116     </dependency>
117     <dependency>
118       <groupId>org.glassfish.jersey.test-framework</groupId>
119       <artifactId>jersey-test-framework-core</artifactId>
120       <scope>test</scope>
121     </dependency>
122     <dependency>
123       <groupId>org.glassfish.jersey.test-framework.providers</groupId>
124       <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
125       <scope>test</scope>
126     </dependency>
127     <dependency>
128       <groupId>org.glassfish.jersey.core</groupId>
129       <artifactId>jersey-server</artifactId>
130       <scope>test</scope>
131     </dependency>
132     <dependency>
133       <groupId>org.mockito</groupId>
134       <artifactId>mockito-core</artifactId>
135       <scope>test</scope>
136     </dependency>
137     <dependency>
138       <groupId>ch.qos.logback</groupId>
139       <artifactId>logback-classic</artifactId>
140       <scope>test</scope>
141     </dependency>
142     <dependency>
143       <groupId>ch.qos.logback</groupId>
144       <artifactId>logback-core</artifactId>
145       <scope>test</scope>
146     </dependency>
147   </dependencies>
148
149   <build>
150     <plugins>
151       <plugin>
152         <groupId>org.codehaus.mojo</groupId>
153         <artifactId>build-helper-maven-plugin</artifactId>
154         <executions>
155           <execution>
156             <id>attach-dmaap-artifact</id>
157             <goals>
158               <goal>attach-artifact</goal>
159             </goals>
160             <configuration>
161               <artifacts>
162                 <artifact>
163                   <file>${basedir}/src/main/resources/org.opendaylight.transportpce.dmaap.cfg</file>
164                   <type>cfg</type>
165                   <classifier>config</classifier>
166                 </artifact>
167               </artifacts>
168             </configuration>
169           </execution>
170         </executions>
171       </plugin>
172     </plugins>
173   </build>
174 </project>