ramverma | 1eb5198 | 2018-07-16 15:23:45 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
adheli.tavares | a3a032d | 2023-08-10 16:58:48 +0100 | [diff] [blame^] | 4 | Modifications Copyright (C) 2023 Nordix Foundation. |
ramverma | 1eb5198 | 2018-07-16 15:23:45 +0100 | [diff] [blame] | 5 | ================================================================================ |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | |
| 18 | SPDX-License-Identifier: Apache-2.0 |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
liamfallon | 3aa7cbe | 2018-10-31 16:35:54 +0000 | [diff] [blame] | 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
ramverma | 1eb5198 | 2018-07-16 15:23:45 +0100 | [diff] [blame] | 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | <parent> |
| 24 | <groupId>org.onap.policy.apex-pdp.tools</groupId> |
| 25 | <artifactId>tools</artifactId> |
adheli.tavares | a3a032d | 2023-08-10 16:58:48 +0100 | [diff] [blame^] | 26 | <version>3.0.1-SNAPSHOT</version> |
ramverma | 1eb5198 | 2018-07-16 15:23:45 +0100 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <artifactId>simple-wsclient</artifactId> |
| 30 | <name>${project.artifactId}</name> |
| 31 | <description>[${project.parent.artifactId}] Simple Websocket client (console and echo)</description> |
| 32 | |
ramverma | 1eb5198 | 2018-07-16 15:23:45 +0100 | [diff] [blame] | 33 | <dependencies> |
| 34 | <dependency> |
adheli.tavares | a3a032d | 2023-08-10 16:58:48 +0100 | [diff] [blame^] | 35 | <groupId>jakarta.websocket</groupId> |
| 36 | <artifactId>jakarta.websocket-api</artifactId> |
| 37 | <version>${version.websocket.jakarta}</version> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>jakarta.websocket</groupId> |
| 41 | <artifactId>jakarta.websocket-client-api</artifactId> |
| 42 | <version>${version.websocket.jakarta}</version> |
ramverma | 1eb5198 | 2018-07-16 15:23:45 +0100 | [diff] [blame] | 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.onap.policy.apex-pdp.tools</groupId> |
| 46 | <artifactId>tools-common</artifactId> |
| 47 | <version>${project.version}</version> |
| 48 | </dependency> |
adheli.tavares | a3a032d | 2023-08-10 16:58:48 +0100 | [diff] [blame^] | 49 | <dependency> |
| 50 | <groupId>org.eclipse.jetty.websocket</groupId> |
| 51 | <artifactId>websocket-jakarta-client</artifactId> |
| 52 | <version>${version.jetty}</version> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.eclipse.jetty.websocket</groupId> |
| 56 | <artifactId>websocket-jakarta-server</artifactId> |
| 57 | <version>${version.jetty}</version> |
| 58 | </dependency> |
ramverma | 1eb5198 | 2018-07-16 15:23:45 +0100 | [diff] [blame] | 59 | </dependencies> |
| 60 | |
| 61 | <build> |
| 62 | <plugins> |
| 63 | <plugin> |
| 64 | <artifactId>maven-assembly-plugin</artifactId> |
| 65 | <executions> |
| 66 | <execution> |
| 67 | <id>console-client</id> |
| 68 | <phase>package</phase> |
| 69 | <goals> |
| 70 | <goal>single</goal> |
| 71 | </goals> |
| 72 | <configuration> |
| 73 | <descriptorRefs> |
| 74 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 75 | </descriptorRefs> |
| 76 | <archive> |
| 77 | <manifest> |
liamfallon | 2b21188 | 2018-09-27 14:29:21 +0100 | [diff] [blame] | 78 | <mainClass>org.onap.policy.apex.tools.simple.wsclient.WsClient</mainClass> |
ramverma | 1eb5198 | 2018-07-16 15:23:45 +0100 | [diff] [blame] | 79 | </manifest> |
| 80 | </archive> |
| 81 | </configuration> |
| 82 | </execution> |
| 83 | </executions> |
| 84 | </plugin> |
| 85 | </plugins> |
| 86 | </build> |
liamfallon | a41c877 | 2018-09-05 15:46:31 +0100 | [diff] [blame] | 87 | </project> |