pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.2.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.example</groupId>
  12. <artifactId>messaging-stomp-websocket</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>messaging-stomp-websocket</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-websocket</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.webjars</groupId>
  26. <artifactId>webjars-locator-core</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.webjars</groupId>
  30. <artifactId>sockjs-client</artifactId>
  31. <version>1.0.2</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.webjars</groupId>
  35. <artifactId>stomp-websocket</artifactId>
  36. <version>2.3.3</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.webjars</groupId>
  40. <artifactId>bootstrap</artifactId>
  41. <version>3.3.7</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.webjars</groupId>
  45. <artifactId>jquery</artifactId>
  46. <version>3.1.1-1</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-test</artifactId>
  51. <scope>test</scope>
  52. <exclusions>
  53. <exclusion>
  54. <groupId>org.junit.vintage</groupId>
  55. <artifactId>junit-vintage-engine</artifactId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. </dependencies>
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-maven-plugin</artifactId>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. </project>