pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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. <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-arbiter</artifactId>
  11. <packaging>jar</packaging>
  12. <name>svr-eip-arbiter</name>
  13. <description>EIP服务状态协调模块</description>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  17. <java.version>1.8</java.version>
  18. <!--<spring-data-releasetrain.version>Fowler-SR2</spring-data-releasetrain.version>-->
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.cloud</groupId>
  27. <artifactId>spring-cloud-starter-eureka</artifactId>
  28. <exclusions>
  29. <exclusion>
  30. <artifactId>netty-codec-http</artifactId>
  31. <groupId>io.netty</groupId>
  32. </exclusion>
  33. <exclusion>
  34. <artifactId>netty-transport</artifactId>
  35. <groupId>io.netty</groupId>
  36. </exclusion>
  37. <exclusion>
  38. <artifactId>netty-transport-native-epoll</artifactId>
  39. <groupId>io.netty</groupId>
  40. </exclusion>
  41. <exclusion>
  42. <artifactId>netty-handler</artifactId>
  43. <groupId>io.netty</groupId>
  44. </exclusion>
  45. <exclusion>
  46. <artifactId>netty-buffer</artifactId>
  47. <groupId>io.netty</groupId>
  48. </exclusion>
  49. <exclusion>
  50. <artifactId>netty-codec</artifactId>
  51. <groupId>io.netty</groupId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.cloud</groupId>
  57. <artifactId>spring-cloud-starter-config</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-configuration-processor</artifactId>
  62. <optional>true</optional>
  63. </dependency>
  64. <!-- test start -->
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-test</artifactId>
  68. <scope>test</scope>
  69. </dependency>
  70. <!-- test end -->
  71. <dependency>
  72. <groupId>org.apache.activemq</groupId>
  73. <artifactId>activemq-core</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.yihu.ehr</groupId>
  77. <artifactId>hos-web-framework</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>io.zbus</groupId>
  81. <artifactId>zbus</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.camel</groupId>
  85. <artifactId>camel-spring-boot-starter</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.apache.camel</groupId>
  89. <artifactId>camel-jms</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.data</groupId>
  93. <artifactId>spring-data-mongodb</artifactId>
  94. </dependency>
  95. </dependencies>
  96. <build>
  97. <plugins>
  98. <plugin>
  99. <groupId>org.springframework.boot</groupId>
  100. <artifactId>spring-boot-maven-plugin</artifactId>
  101. <version>${version.spring-boot}</version>
  102. <executions>
  103. <execution>
  104. <goals>
  105. <goal>repackage</goal>
  106. </goals>
  107. </execution>
  108. </executions>
  109. <configuration>
  110. <mainClass>com.yihu.hos.arbiter.HosArbiterApplication</mainClass>
  111. </configuration>
  112. </plugin>
  113. </plugins>
  114. </build>
  115. </project>