pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  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. <parent>
  6. <groupId>com.yihu.ehr</groupId>
  7. <artifactId>ehr-cloud-parent</artifactId>
  8. <version>1.13.0</version>
  9. </parent>
  10. <artifactId>svr-eip-dfs</artifactId>
  11. <version>1.13.0</version>
  12. <packaging>jar</packaging>
  13. <name>svr-eip-dfs</name>
  14. <description>eip file and zbus mq module</description>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-test</artifactId>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.cloud</groupId>
  31. <artifactId>spring-cloud-starter-eureka</artifactId>
  32. <exclusions>
  33. <exclusion>
  34. <artifactId>netty-codec-http</artifactId>
  35. <groupId>io.netty</groupId>
  36. </exclusion>
  37. <exclusion>
  38. <artifactId>netty-transport</artifactId>
  39. <groupId>io.netty</groupId>
  40. </exclusion>
  41. <exclusion>
  42. <artifactId>netty-transport-native-epoll</artifactId>
  43. <groupId>io.netty</groupId>
  44. </exclusion>
  45. <exclusion>
  46. <artifactId>netty-handler</artifactId>
  47. <groupId>io.netty</groupId>
  48. </exclusion>
  49. <exclusion>
  50. <artifactId>netty-buffer</artifactId>
  51. <groupId>io.netty</groupId>
  52. </exclusion>
  53. <exclusion>
  54. <artifactId>netty-codec</artifactId>
  55. <groupId>io.netty</groupId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.cloud</groupId>
  61. <artifactId>spring-cloud-starter-config</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.mongodb</groupId>
  69. <artifactId>mongo-java-driver</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>io.zbus</groupId>
  73. <artifactId>zbus</artifactId>
  74. </dependency>
  75. <!-- 强制指定netty版本...否则由于父pom指定了netty版本号, io.zbus里面的netty的pom指定版本无效 -->
  76. <dependency>
  77. <groupId>io.netty</groupId>
  78. <artifactId>netty-all</artifactId>
  79. <version>4.0.51.Final</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>commons-io</groupId>
  83. <artifactId>commons-io</artifactId>
  84. </dependency>
  85. </dependencies>
  86. <build>
  87. <plugins>
  88. <plugin>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-maven-plugin</artifactId>
  91. <version>${version.spring-boot}</version>
  92. <executions>
  93. <execution>
  94. <goals>
  95. <goal>repackage</goal>
  96. </goals>
  97. </execution>
  98. </executions>
  99. <configuration>
  100. <mainClass>com.yihu.hos.dfs.HosDfsApplication</mainClass>
  101. </configuration>
  102. </plugin>
  103. </plugins>
  104. </build>
  105. </project>