Bump to odlparent-6.0.1/yangtools-4.0.2/mdsal-5.0.4
[netconf.git] / restconf / websocket-client / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2019 FRINX s.r.o. 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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13
14     <parent>
15         <groupId>org.opendaylight.netconf</groupId>
16         <artifactId>restconf-parent</artifactId>
17         <version>1.11.0-SNAPSHOT</version>
18         <relativePath>../restconf-parent</relativePath>
19     </parent>
20
21     <artifactId>websocket-client</artifactId>
22     <version>1.11.0-SNAPSHOT</version>
23     <packaging>jar</packaging>
24
25     <dependencies>
26         <dependency>
27             <groupId>org.eclipse.jetty.websocket</groupId>
28             <artifactId>websocket-client</artifactId>
29             <!-- FIXME: remove this with odlparent-6.0.1+ -->
30             <version>9.4.12.v20180830</version>
31         </dependency>
32         <dependency>
33             <groupId>net.sourceforge.argparse4j</groupId>
34             <artifactId>argparse4j</artifactId>
35             <version>0.8.1</version>
36         </dependency>
37         <dependency>
38             <groupId>org.opendaylight.controller</groupId>
39             <artifactId>threadpool-config-impl</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>com.google.guava</groupId>
43             <artifactId>guava</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.slf4j</groupId>
47             <artifactId>slf4j-api</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.slf4j</groupId>
51             <artifactId>slf4j-log4j12</artifactId>
52         </dependency>
53     </dependencies>
54
55     <build>
56         <plugins>
57             <plugin>
58                 <artifactId>maven-assembly-plugin</artifactId>
59                 <configuration>
60                     <archive>
61                         <manifest>
62                             <mainClass>org.opendaylight.restconf.websocket.client.StartApplication</mainClass>
63                         </manifest>
64                     </archive>
65                     <descriptorRefs>
66                         <descriptorRef>jar-with-dependencies</descriptorRef>
67                     </descriptorRefs>
68                     <finalName>${project.artifactId}-${project.version}-executable</finalName>
69                     <appendAssemblyId>false</appendAssemblyId>
70                 </configuration>
71                 <executions>
72                     <execution>
73                         <id>make-assembly</id>
74                         <phase>package</phase>
75                         <goals>
76                             <goal>single</goal>
77                         </goals>
78                     </execution>
79                 </executions>
80             </plugin>
81         </plugins>
82     </build>
83 </project>