pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. <parent>
  6. <groupId>com.lc.ibps.cloud</groupId>
  7. <artifactId>ibps-oauth-root</artifactId>
  8. <version>3.3.7-LC.RELEASE</version>
  9. <relativePath>../../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>ibps-oauth-server2-default</artifactId>
  13. <properties>
  14. <java.version>1.8</java.version>
  15. <maven.compiler.source>1.8</maven.compiler.source>
  16. <maven.compiler.target>1.8</maven.compiler.target>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-log4j2</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.lc.ibps.cloud</groupId>
  25. <artifactId>ibps-basic-redis</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.lc.ibps.cloud</groupId>
  29. <artifactId>ibps-basic-identifier</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.lc.ibps.cloud</groupId>
  33. <artifactId>ibps-basic-monitor</artifactId>
  34. </dependency>
  35. <!-- response -->
  36. <dependency>
  37. <groupId>com.lc.ibps.base</groupId>
  38. <artifactId>ibps-base-cloud</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.lc.ibps.cloud</groupId>
  42. <artifactId>ibps-basic-response</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.cloud</groupId>
  46. <artifactId>spring-cloud-starter-openfeign</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.cloud</groupId>
  50. <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.lc.ibps.cloud</groupId>
  54. <artifactId>ibps-oauth-base</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.lc.ibps.common</groupId>
  58. <artifactId>ibps-org-biz</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.lc.ibps.common</groupId>
  62. <artifactId>ibps-msg-biz</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>taobao</groupId>
  66. <artifactId>taobao-sdk-java</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.aliyun</groupId>
  70. <artifactId>aliyun-java-sdk-core</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.aliyun</groupId>
  74. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.lc.ibps.persist</groupId>
  78. <artifactId>ibps-persist-common</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.lc.ibps.base</groupId>
  82. <artifactId>ibps-base-web</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.lc.ibps.message</groupId>
  86. <artifactId>ibps-message-producer</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>javax.servlet</groupId>
  90. <artifactId>servlet-api</artifactId>
  91. <scope>provided</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-starter-test</artifactId>
  96. <scope>test</scope>
  97. </dependency>
  98. </dependencies>
  99. <build>
  100. <plugins>
  101. <plugin>
  102. <artifactId>maven-clean-plugin</artifactId>
  103. <version>3.0.0</version>
  104. <configuration>
  105. <source>1.8</source>
  106. <target>1.8</target>
  107. <encoding>UTF-8</encoding>
  108. </configuration>
  109. </plugin>
  110. <plugin>
  111. <artifactId>maven-compiler-plugin</artifactId>
  112. <version>3.3</version>
  113. <configuration>
  114. <source>1.8</source>
  115. <target>1.8</target>
  116. <fork>true</fork>
  117. <encoding>UTF-8</encoding>
  118. </configuration>
  119. </plugin>
  120. <plugin>
  121. <artifactId>maven-deploy-plugin</artifactId>
  122. <configuration>
  123. <source>1.8</source>
  124. <target>1.8</target>
  125. <fork>true</fork>
  126. <encoding>UTF-8</encoding>
  127. </configuration>
  128. </plugin>
  129. </plugins>
  130. </build>
  131. </project>