pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. <groupId>org.springframework</groupId>
  6. <artifactId>gs-messaging-stomp-websocket</artifactId>
  7. <version>0.1.0</version>
  8. <parent>
  9. <groupId>org.springframework.boot</groupId>
  10. <artifactId>spring-boot-starter-parent</artifactId>
  11. <version>2.1.4.RELEASE</version>
  12. </parent>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-websocket</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.webjars</groupId>
  20. <artifactId>webjars-locator-core</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.webjars</groupId>
  24. <artifactId>sockjs-client</artifactId>
  25. <version>1.0.2</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.webjars</groupId>
  29. <artifactId>stomp-websocket</artifactId>
  30. <version>2.3.3</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.webjars</groupId>
  34. <artifactId>bootstrap</artifactId>
  35. <version>3.3.7</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.webjars</groupId>
  39. <artifactId>jquery</artifactId>
  40. <version>3.1.0</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-test</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. </dependencies>
  48. <properties>
  49. <java.version>11</java.version>
  50. </properties>
  51. <build>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-maven-plugin</artifactId>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </project>