talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | |
| 6 | <name>openecomp-sdc-notification-websocket</name> |
| 7 | <artifactId>openecomp-sdc-notification-websocket</artifactId> |
| 8 | |
| 9 | <parent> |
| 10 | <groupId>org.openecomp.sdc</groupId> |
JulienBe | b485c37 | 2020-10-28 11:50:25 -0400 | [diff] [blame] | 11 | <artifactId>openecomp-sdc-notification-lib</artifactId> |
ChrisC | 00acf3d | 2021-03-22 13:54:06 +0100 | [diff] [blame] | 12 | <version>1.9.0-SNAPSHOT</version> |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 13 | </parent> |
| 14 | |
| 15 | <dependencies> |
| 16 | <dependency> |
| 17 | <groupId>org.openecomp.sdc</groupId> |
| 18 | <artifactId>openecomp-sdc-notification-worker</artifactId> |
| 19 | <version>${project.version}</version> |
| 20 | </dependency> |
| 21 | <dependency> |
| 22 | <groupId>org.springframework</groupId> |
| 23 | <artifactId>spring-websocket</artifactId> |
Michael Lando | 636c993 | 2018-05-22 18:26:11 +0300 | [diff] [blame] | 24 | <version>${spring.framework.version}</version> |
vasraz | 8dbc732 | 2021-06-26 14:23:12 +0100 | [diff] [blame^] | 25 | <exclusions> |
| 26 | <exclusion> |
| 27 | <groupId>org.springframework</groupId> |
| 28 | <artifactId>spring-web</artifactId> |
| 29 | </exclusion> |
| 30 | <exclusion> |
| 31 | <groupId>org.springframework</groupId> |
| 32 | <artifactId>spring-core</artifactId> |
| 33 | </exclusion> |
| 34 | </exclusions> |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>com.google.code.gson</groupId> |
| 38 | <artifactId>gson</artifactId> |
| 39 | <version>2.3.1</version> |
| 40 | </dependency> |
vasraz | 8dbc732 | 2021-06-26 14:23:12 +0100 | [diff] [blame^] | 41 | <dependency> |
| 42 | <groupId>org.springframework</groupId> |
| 43 | <artifactId>spring-web</artifactId> |
| 44 | <version>${spring.framework.version}</version> |
| 45 | <exclusions> |
| 46 | <exclusion> |
| 47 | <groupId>org.springframework</groupId> |
| 48 | <artifactId>spring-core</artifactId> |
| 49 | </exclusion> |
| 50 | </exclusions> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.springframework</groupId> |
| 54 | <artifactId>spring-core</artifactId> |
| 55 | <version>${spring.framework.version}</version> |
| 56 | </dependency> |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 57 | </dependencies> |
| 58 | |
| 59 | </project> |