f28a0ba4cafb013eb4b20f49ce4bcaf7efab61b6
[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>4.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             <version>0.8.1</version>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.controller</groupId>
36             <artifactId>threadpool-config-impl</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>com.google.guava</groupId>
40             <artifactId>guava</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.slf4j</groupId>
44             <artifactId>slf4j-api</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.slf4j</groupId>
48             <artifactId>slf4j-log4j12</artifactId>
49         </dependency>
50     </dependencies>
51
52     <build>
53         <plugins>
54             <plugin>
55                 <artifactId>maven-assembly-plugin</artifactId>
56                 <configuration>
57                     <archive>
58                         <manifest>
59                             <mainClass>org.opendaylight.restconf.websocket.client.StartApplication</mainClass>
60                         </manifest>
61                     </archive>
62                     <descriptorRefs>
63                         <descriptorRef>jar-with-dependencies</descriptorRef>
64                     </descriptorRefs>
65                     <finalName>${project.artifactId}-${project.version}-executable</finalName>
66                     <appendAssemblyId>false</appendAssemblyId>
67                 </configuration>
68                 <executions>
69                     <execution>
70                         <id>make-assembly</id>
71                         <phase>package</phase>
72                         <goals>
73                             <goal>single</goal>
74                         </goals>
75                     </execution>
76                 </executions>
77             </plugin>
78         </plugins>
79     </build>
80 </project>