pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.yihu.ehr</groupId>
  8. <artifactId>ehr-ms-parent</artifactId>
  9. <version>1.13.0</version>
  10. </parent>
  11. <artifactId>svr-authentication</artifactId>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <wagonServerId>192.168.1.220</wagonServerId>
  15. <wagonUrl>scp://sand:timeneverstop@192.168.1.221/home/sand/ehr-release</wagonUrl>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-security</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.security.oauth</groupId>
  24. <artifactId>spring-security-oauth2</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-test</artifactId>
  29. <scope>test</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.cloud</groupId>
  33. <artifactId>spring-cloud-starter-config</artifactId>
  34. <scope>${dependency.scope}</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.cloud</groupId>
  38. <artifactId>spring-cloud-starter-eureka</artifactId>
  39. <scope>${dependency.scope}</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.cloud</groupId>
  43. <artifactId>spring-cloud-starter-feign</artifactId>
  44. <scope>${dependency.scope}</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.cloud</groupId>
  48. <artifactId>spring-cloud-starter-ribbon</artifactId>
  49. <scope>${dependency.scope}</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-actuator</artifactId>
  54. </dependency>
  55. <!-- Redis1 -->
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-data-redis</artifactId>
  59. <scope>${dependency.scope}</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>redis.clients</groupId>
  63. <artifactId>jedis</artifactId>
  64. <scope>${dependency.scope}</scope>
  65. </dependency>
  66. <!-- Redis -->
  67. <!-- JdbcTemplate-->
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-jdbc</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>mysql</groupId>
  74. <artifactId>mysql-connector-java</artifactId>
  75. <scope>runtime</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.commons</groupId>
  79. <artifactId>commons-dbcp2</artifactId>
  80. </dependency>
  81. <!-- JdbcTemplate-->
  82. <dependency>
  83. <groupId>javax.servlet</groupId>
  84. <artifactId>javax.servlet-api</artifactId>
  85. <scope>${dependency.scope}</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.yihu.ehr</groupId>
  89. <artifactId>commons-ui-swagger</artifactId>
  90. <scope>compile</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.yihu.ehr</groupId>
  94. <artifactId>commons-ehr-constants</artifactId>
  95. <scope>compile</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.yihu.ehr</groupId>
  99. <artifactId>commons-rest-model</artifactId>
  100. <scope>compile</scope>
  101. </dependency>
  102. </dependencies>
  103. <build>
  104. <plugins>
  105. <plugin>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-maven-plugin</artifactId>
  108. </plugin>
  109. <plugin>
  110. <artifactId>maven-project-info-reports-plugin</artifactId>
  111. <version>2.7</version>
  112. </plugin>
  113. <plugin>
  114. <groupId>org.apache.maven.plugins</groupId>
  115. <artifactId>maven-site-plugin</artifactId>
  116. <version>3.3</version>
  117. <dependencies>
  118. <dependency>
  119. <groupId>org.apache.maven.doxia</groupId>
  120. <artifactId>doxia-module-markdown</artifactId>
  121. <version>1.5</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>lt.velykis.maven.skins</groupId>
  125. <artifactId>reflow-velocity-tools</artifactId>
  126. <version>1.1.1</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.apache.velocity</groupId>
  130. <artifactId>velocity</artifactId>
  131. <version>1.7</version>
  132. </dependency>
  133. </dependencies>
  134. <configuration>
  135. <locales>zh_CN</locales>
  136. </configuration>
  137. </plugin>
  138. </plugins>
  139. </build>
  140. </project>