pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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-cloud-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. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.cloud</groupId>
  37. <artifactId>spring-cloud-starter-eureka</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.cloud</groupId>
  41. <artifactId>spring-cloud-starter-feign</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.cloud</groupId>
  45. <artifactId>spring-cloud-starter-ribbon</artifactId>
  46. <scope>${dependency.scope}</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-actuator</artifactId>
  51. </dependency>
  52. <!-- Redis1 -->
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-data-redis</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>redis.clients</groupId>
  59. <artifactId>jedis</artifactId>
  60. </dependency>
  61. <!-- Redis -->
  62. <!-- JdbcTemplate-->
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-jdbc</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>mysql</groupId>
  69. <artifactId>mysql-connector-java</artifactId>
  70. <scope>runtime</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.apache.commons</groupId>
  74. <artifactId>commons-dbcp2</artifactId>
  75. </dependency>
  76. <!-- JdbcTemplate-->
  77. <dependency>
  78. <groupId>javax.servlet</groupId>
  79. <artifactId>javax.servlet-api</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.yihu.ehr</groupId>
  83. <artifactId>commons-ui-swagger</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.yihu.ehr</groupId>
  87. <artifactId>commons-ehr-constants</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.yihu.ehr</groupId>
  91. <artifactId>commons-rest-model</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.yihu.ehr</groupId>
  95. <artifactId>commons-cat</artifactId>
  96. </dependency>
  97. </dependencies>
  98. <build>
  99. <plugins>
  100. <plugin>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-maven-plugin</artifactId>
  103. </plugin>
  104. <plugin>
  105. <artifactId>maven-project-info-reports-plugin</artifactId>
  106. <version>2.7</version>
  107. </plugin>
  108. <plugin>
  109. <groupId>org.apache.maven.plugins</groupId>
  110. <artifactId>maven-site-plugin</artifactId>
  111. <version>3.3</version>
  112. <dependencies>
  113. <dependency>
  114. <groupId>org.apache.maven.doxia</groupId>
  115. <artifactId>doxia-module-markdown</artifactId>
  116. <version>1.5</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>lt.velykis.maven.skins</groupId>
  120. <artifactId>reflow-velocity-tools</artifactId>
  121. <version>1.1.1</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.apache.velocity</groupId>
  125. <artifactId>velocity</artifactId>
  126. <version>1.7</version>
  127. </dependency>
  128. </dependencies>
  129. <configuration>
  130. <locales>zh_CN</locales>
  131. </configuration>
  132. </plugin>
  133. </plugins>
  134. </build>
  135. </project>