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