pom.xml 4.9 KB

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