pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.tencent.tsf</groupId>
  6. <artifactId>spring-cloud-tsf-dependencies</artifactId>
  7. <version>1.23.0-Greenwich-RELEASE</version>
  8. </parent>
  9. <artifactId>tsf-demo</artifactId>
  10. <version>1.23.0-Greenwich-RELEASE</version>
  11. <packaging>pom</packaging>
  12. <modules>
  13. <module>provider-demo</module>
  14. <module>consumer-demo</module>
  15. <module>opensource-zuul-demo</module>
  16. <module>mysql-demo</module>
  17. <module>redis-demo</module>
  18. <module>mongodb-demo</module>
  19. <module>kafka-demo</module>
  20. <module>opensource-scg-demo</module>
  21. <module>rocketmq-demo</module>
  22. <module>task-schedule-demo</module>
  23. <module>msgw-demo</module>
  24. </modules>
  25. <dependencies>
  26. <dependency>
  27. <groupId>com.tencent.tsf</groupId>
  28. <artifactId>spring-cloud-tsf-starter</artifactId>
  29. </dependency>
  30. <!-- RESTful APIs swagger2 -->
  31. <dependency>
  32. <groupId>io.springfox</groupId>
  33. <artifactId>springfox-swagger2</artifactId>
  34. <version>2.9.2</version>
  35. <exclusions>
  36. <exclusion>
  37. <groupId>io.swagger</groupId>
  38. <artifactId>swagger-annotations</artifactId>
  39. </exclusion>
  40. <exclusion>
  41. <groupId>io.swagger</groupId>
  42. <artifactId>swagger-models</artifactId>
  43. </exclusion>
  44. </exclusions>
  45. </dependency>
  46. <dependency>
  47. <groupId>io.springfox</groupId>
  48. <artifactId>springfox-swagger-ui</artifactId>
  49. <version>2.9.2</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>io.swagger</groupId>
  53. <artifactId>swagger-annotations</artifactId>
  54. <version>1.5.21</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>io.swagger</groupId>
  58. <artifactId>swagger-models</artifactId>
  59. <version>1.5.21</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.github.xiaoymin</groupId>
  63. <artifactId>swagger-bootstrap-ui</artifactId>
  64. <version>1.9.4</version>
  65. </dependency>
  66. </dependencies>
  67. <properties>
  68. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  69. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  70. <java.version>1.8</java.version>
  71. </properties>
  72. <build>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-maven-plugin</artifactId>
  77. </plugin>
  78. <plugin>
  79. <groupId>org.apache.maven.plugins</groupId>
  80. <artifactId>maven-compiler-plugin</artifactId>
  81. <configuration>
  82. <encoding>UTF-8</encoding>
  83. <target>1.8</target>
  84. <source>1.8</source>
  85. </configuration>
  86. </plugin>
  87. </plugins>
  88. </build>
  89. </project>