pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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>1.0.0.RC4</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>com.fasterxml.jackson.core</groupId>
  28. <artifactId>jackson-databind</artifactId>
  29. </dependency>
  30. </dependencies>
  31. <properties>
  32. <start-class>hello.Application</start-class>
  33. </properties>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <artifactId>maven-compiler-plugin</artifactId>
  38. <version>2.3.2</version>
  39. </plugin>
  40. <plugin>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-maven-plugin</artifactId>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. <repositories>
  47. <repository>
  48. <id>spring-snapshots</id>
  49. <url>http://repo.spring.io/libs-snapshot</url>
  50. <snapshots><enabled>true</enabled></snapshots>
  51. </repository>
  52. </repositories>
  53. <pluginRepositories>
  54. <pluginRepository>
  55. <id>spring-snapshots</id>
  56. <url>http://repo.spring.io/libs-snapshot</url>
  57. <snapshots><enabled>true</enabled></snapshots>
  58. </pluginRepository>
  59. </pluginRepositories>
  60. </project>