Bump upstreams
[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>netconf-parent</artifactId>
17         <version>7.0.0-SNAPSHOT</version>
18         <relativePath>../../parent</relativePath>
19     </parent>
20
21     <artifactId>websocket-client</artifactId>
22     <packaging>jar</packaging>
23
24     <dependencies>
25         <dependency>
26             <groupId>org.eclipse.jetty.websocket</groupId>
27             <artifactId>websocket-client</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>net.sourceforge.argparse4j</groupId>
31             <artifactId>argparse4j</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.controller</groupId>
35             <artifactId>threadpool-config-impl</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>com.google.guava</groupId>
39             <artifactId>guava</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.slf4j</groupId>
43             <artifactId>slf4j-api</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.slf4j</groupId>
47             <artifactId>slf4j-log4j12</artifactId>
48         </dependency>
49     </dependencies>
50
51     <build>
52         <plugins>
53             <plugin>
54                 <artifactId>maven-assembly-plugin</artifactId>
55                 <configuration>
56                     <archive>
57                         <manifest>
58                             <mainClass>org.opendaylight.restconf.websocket.client.StartApplication</mainClass>
59                         </manifest>
60                     </archive>
61                     <descriptorRefs>
62                         <descriptorRef>jar-with-dependencies</descriptorRef>
63                     </descriptorRefs>
64                     <finalName>${project.artifactId}-${project.version}-executable</finalName>
65                     <appendAssemblyId>false</appendAssemblyId>
66                 </configuration>
67                 <executions>
68                     <execution>
69                         <id>make-assembly</id>
70                         <phase>package</phase>
71                         <goals>
72                             <goal>single</goal>
73                         </goals>
74                     </execution>
75                 </executions>
76             </plugin>
77         </plugins>
78     </build>
79 </project>