pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>dcp</artifactId>
  6. <groupId>com.geidco</groupId>
  7. <version>1.0-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>dcp-common</artifactId>
  11. <name>dcp-common</name>
  12. <!-- FIXME change it to the project's website -->
  13. <url>http://www.example.com</url>
  14. <properties>
  15. <poi.version>3.14</poi.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.xlkh</groupId>
  20. <artifactId>cloud-platform-common</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.xlkh</groupId>
  24. <artifactId>platform-common</artifactId>
  25. <exclusions>
  26. <exclusion>
  27. <groupId>org.opensymphony.quartz</groupId>
  28. <artifactId>quartz</artifactId>
  29. </exclusion>
  30. <exclusion>
  31. <artifactId>fastjson</artifactId>
  32. <groupId>com.alibaba</groupId>
  33. </exclusion>
  34. <exclusion>
  35. <artifactId>hibernate-validator</artifactId>
  36. <groupId>org.hibernate</groupId>
  37. </exclusion>
  38. <exclusion>
  39. <artifactId>shiro-core</artifactId>
  40. <groupId>org.apache.shiro</groupId>
  41. </exclusion>
  42. <exclusion>
  43. <artifactId>shiro-ehcache</artifactId>
  44. <groupId>org.apache.shiro</groupId>
  45. </exclusion>
  46. <exclusion>
  47. <artifactId>shiro-quartz</artifactId>
  48. <groupId>org.apache.shiro</groupId>
  49. </exclusion>
  50. <exclusion>
  51. <artifactId>shiro-spring</artifactId>
  52. <groupId>org.apache.shiro</groupId>
  53. </exclusion>
  54. <exclusion>
  55. <artifactId>shiro-web</artifactId>
  56. <groupId>org.apache.shiro</groupId>
  57. </exclusion>
  58. </exclusions>
  59. </dependency>
  60. <dependency>
  61. <groupId>io.jsonwebtoken</groupId>
  62. <artifactId>jjwt</artifactId>
  63. </dependency>
  64. <!-- https://mvnrepository.com/artifact/javax/javaee-api -->
  65. <dependency>
  66. <groupId>javax</groupId>
  67. <artifactId>javaee-api</artifactId>
  68. <version>8.0</version>
  69. <scope>provided</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.httpcomponents</groupId>
  73. <artifactId>httpclient</artifactId>
  74. <version>4.3.3</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.security.oauth</groupId>
  78. <artifactId>spring-security-oauth2</artifactId>
  79. <version>2.2.1.RELEASE</version>
  80. <scope>compile</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>io.github.openfeign</groupId>
  84. <artifactId>feign-core</artifactId>
  85. <version>9.5.1</version>
  86. <scope>compile</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.cloud</groupId>
  90. <artifactId>spring-cloud-security</artifactId>
  91. <version>2.0.0.RELEASE</version>
  92. <scope>compile</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.baidu.fsg</groupId>
  96. <artifactId>uid-generator</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.slf4j</groupId>
  100. <artifactId>slf4j-log4j12</artifactId>
  101. </dependency>
  102. <!--poi -->
  103. <dependency>
  104. <groupId>org.apache.poi</groupId>
  105. <artifactId>poi</artifactId>
  106. <version>${poi.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.commons</groupId>
  110. <artifactId>commons-collections4</artifactId>
  111. <version>4.1</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.apache.poi</groupId>
  115. <artifactId>poi-ooxml</artifactId>
  116. <version>${poi.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.poi</groupId>
  120. <artifactId>poi-ooxml-schemas</artifactId>
  121. <version>${poi.version}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.apache.poi</groupId>
  125. <artifactId>poi-excelant</artifactId>
  126. <version>${poi.version}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.apache.poi</groupId>
  130. <artifactId>poi-scratchpad</artifactId>
  131. <version>${poi.version}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>com.alibaba</groupId>
  135. <artifactId>fastjson</artifactId>
  136. <version>1.2.83</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.belerweb</groupId>
  140. <artifactId>pinyin4j</artifactId>
  141. <version>2.5.1</version>
  142. <scope>compile</scope>
  143. </dependency>
  144. </dependencies>
  145. <build>
  146. <plugins>
  147. <plugin>
  148. <groupId>org.springframework.boot</groupId>
  149. <artifactId>spring-boot-maven-plugin</artifactId>
  150. <configuration>
  151. <classifier>exec</classifier>
  152. <mainClass>com.geidco.dcp.DcpCommonApplication</mainClass>
  153. </configuration>
  154. </plugin>
  155. </plugins>
  156. </build>
  157. </project>