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