pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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.2.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.springframework</groupId>
  20. <artifactId>spring-messaging</artifactId>
  21. </dependency>
  22. </dependencies>
  23. <properties>
  24. <start-class>hello.Application</start-class>
  25. <java.version>1.7</java.version>
  26. </properties>
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <artifactId>maven-compiler-plugin</artifactId>
  31. <version>2.3.2</version>
  32. </plugin>
  33. <plugin>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-maven-plugin</artifactId>
  36. </plugin>
  37. </plugins>
  38. </build>
  39. <repositories>
  40. <repository>
  41. <id>spring-snapshots</id>
  42. <url>http://repo.spring.io/libs-snapshot</url>
  43. <snapshots><enabled>true</enabled></snapshots>
  44. </repository>
  45. </repositories>
  46. <pluginRepositories>
  47. <pluginRepository>
  48. <id>spring-snapshots</id>
  49. <url>http://repo.spring.io/libs-snapshot</url>
  50. <snapshots><enabled>true</enabled></snapshots>
  51. </pluginRepository>
  52. </pluginRepositories>
  53. </project>