pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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 http://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>0.5.0.BUILD-SNAPSHOT</version>
  12. </parent>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-web</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-websocket</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework</groupId>
  24. <artifactId>spring-messaging</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.projectreactor</groupId>
  28. <artifactId>reactor-tcp</artifactId>
  29. <version>1.0.0.RC1</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.fasterxml.jackson.core</groupId>
  33. <artifactId>jackson-databind</artifactId>
  34. </dependency>
  35. </dependencies>
  36. <properties>
  37. <start-class>hello.Application</start-class>
  38. </properties>
  39. <build>
  40. <plugins>
  41. <plugin>
  42. <artifactId>maven-compiler-plugin</artifactId>
  43. <version>2.3.2</version>
  44. </plugin>
  45. <plugin>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-maven-plugin</artifactId>
  48. </plugin>
  49. </plugins>
  50. </build>
  51. <repositories>
  52. <repository>
  53. <id>spring-snapshots</id>
  54. <url>http://repo.spring.io/libs-snapshot</url>
  55. <snapshots><enabled>true</enabled></snapshots>
  56. </repository>
  57. </repositories>
  58. <pluginRepositories>
  59. <pluginRepository>
  60. <id>spring-snapshots</id>
  61. <url>http://repo.spring.io/libs-snapshot</url>
  62. <snapshots><enabled>true</enabled></snapshots>
  63. </pluginRepository>
  64. </pluginRepositories>
  65. </project>