pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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.1</version>
  9. </parent>
  10. <artifactId>svr-eip-dfs</artifactId>
  11. <version>1.1.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. <dependency>
  76. <groupId>commons-io</groupId>
  77. <artifactId>commons-io</artifactId>
  78. </dependency>
  79. </dependencies>
  80. <build>
  81. <plugins>
  82. <plugin>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-maven-plugin</artifactId>
  85. <version>${spring-boot-version}</version>
  86. <executions>
  87. <execution>
  88. <goals>
  89. <goal>repackage</goal>
  90. </goals>
  91. </execution>
  92. </executions>
  93. <configuration>
  94. <mainClass>com.yihu.hos.dfs.HosDfsApplication</mainClass>
  95. </configuration>
  96. </plugin>
  97. </plugins>
  98. </build>
  99. </project>