pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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. <groupId>com.uas</groupId>
  7. <artifactId>credit</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>1.4.1.RELEASE</version>
  13. </parent>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.uas.platform</groupId>
  17. <artifactId>platform-core</artifactId>
  18. <exclusions>
  19. <exclusion>
  20. <groupId>*</groupId>
  21. <artifactId>*</artifactId>
  22. </exclusion>
  23. </exclusions>
  24. <version>0.0.1-SNAPSHOT</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>junit</groupId>
  28. <artifactId>junit</artifactId>
  29. <scope>test</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>ant</groupId>
  33. <artifactId>ant</artifactId>
  34. <version>1.6.5</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.commons</groupId>
  38. <artifactId>commons-lang3</artifactId>
  39. <version>3.7</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-actuator</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-data-jpa</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-web</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-security</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework</groupId>
  59. <artifactId>spring-tx</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>mysql</groupId>
  63. <artifactId>mysql-connector-java</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.alibaba</groupId>
  67. <artifactId>druid</artifactId>
  68. <version>1.0.24</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-autoconfigure</artifactId>
  73. <version>1.4.1.RELEASE</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.alibaba</groupId>
  77. <artifactId>fastjson</artifactId>
  78. <version>1.2.15</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.uas.account</groupId>
  82. <artifactId>account-common</artifactId>
  83. <version>0.0.1-SNAPSHOT</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.github.sgroschupf</groupId>
  87. <artifactId>zkclient</artifactId>
  88. <version>0.1</version>
  89. <exclusions>
  90. <exclusion>
  91. <artifactId>slf4j-log4j12</artifactId>
  92. <groupId>org.slf4j</groupId>
  93. </exclusion>
  94. <exclusion>
  95. <artifactId>log4j</artifactId>
  96. <groupId>log4j</groupId>
  97. </exclusion>
  98. </exclusions>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.apache.zookeeper</groupId>
  102. <artifactId>zookeeper</artifactId>
  103. <version>3.4.6</version>
  104. <exclusions>
  105. <exclusion>
  106. <artifactId>slf4j-log4j12</artifactId>
  107. <groupId>org.slf4j</groupId>
  108. </exclusion>
  109. </exclusions>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.alibaba</groupId>
  113. <artifactId>dubbo</artifactId>
  114. <version>2.8.4</version>
  115. <exclusions>
  116. <exclusion>
  117. <artifactId>log4j</artifactId>
  118. <groupId>log4j</groupId>
  119. </exclusion>
  120. </exclusions>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.caucho</groupId>
  124. <artifactId>hessian</artifactId>
  125. <version>4.0.38</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.uas.dfs</groupId>
  129. <artifactId>dfs-api</artifactId>
  130. <version>0.0.2</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.apache.poi</groupId>
  134. <artifactId>poi</artifactId>
  135. <version>3.9</version>
  136. </dependency>
  137. </dependencies>
  138. <build>
  139. <plugins>
  140. <plugin>
  141. <groupId>org.springframework.boot</groupId>
  142. <artifactId>spring-boot-maven-plugin</artifactId>
  143. </plugin>
  144. </plugins>
  145. </build>
  146. </project>