pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.hotent</groupId>
  7. <artifactId>eip</artifactId>
  8. <version>8.0.7</version>
  9. </parent>
  10. <artifactId>uc</artifactId>
  11. <name>uc</name>
  12. <description>user center</description>
  13. <properties>
  14. <cron-utils.version>7.0.1</cron-utils.version>
  15. <spring-boot-starter-mobile.version>1.5.9.RELEASE</spring-boot-starter-mobile.version>
  16. </properties>
  17. <dependencies>
  18. <!-- Spring boot 测试 -->
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-test</artifactId>
  22. <scope>test</scope>
  23. </dependency>
  24. <!-- excel处理相关 -->
  25. <dependency>
  26. <groupId>com.hotent</groupId>
  27. <artifactId>poi</artifactId>
  28. <version>${parent.version}</version>
  29. </dependency>
  30. <!-- ad同步 -->
  31. <dependency>
  32. <groupId>org.springframework.ldap</groupId>
  33. <artifactId>spring-ldap-core</artifactId>
  34. </dependency>
  35. <!-- 定时任务一 -->
  36. <dependency>
  37. <groupId>com.cronutils</groupId>
  38. <artifactId>cron-utils</artifactId>
  39. <version>${cron-utils.version}</version>
  40. </dependency>
  41. <!-- Spring boot 移动端支持 -->
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-mobile</artifactId>
  45. <version>${spring-boot-starter-mobile.version}</version>
  46. </dependency>
  47. <!-- rest-auth-service 获取请求方法的授权信息 portal门户模块请不要依赖 只在 bpm-model bpm-runtime
  48. form,uc中依赖 -->
  49. <dependency>
  50. <groupId>com.hotent</groupId>
  51. <artifactId>rest-auth-service</artifactId>
  52. <version>${parent.version}</version>
  53. </dependency>
  54. <!-- redis -->
  55. <dependency>
  56. <groupId>com.hotent</groupId>
  57. <artifactId>redis</artifactId>
  58. <version>${parent.version}</version>
  59. </dependency>
  60. <!-- 外部接口依赖 -->
  61. <dependency>
  62. <groupId>com.hotent</groupId>
  63. <artifactId>api-manager</artifactId>
  64. <version>${parent.version}</version>
  65. </dependency>
  66. <!-- mq -->
  67. <dependency>
  68. <groupId>com.hotent</groupId>
  69. <artifactId>jms</artifactId>
  70. <version>${project.version}</version>
  71. </dependency>
  72. <!-- 其他模块使用I18nUtil的方法,获取国际化资源 -->
  73. <dependency>
  74. <groupId>com.hotent</groupId>
  75. <artifactId>i18n</artifactId>
  76. <version>${project.version}</version>
  77. <exclusions>
  78. <exclusion>
  79. <groupId>com.hotent</groupId>
  80. <artifactId>uc-api-impl</artifactId>
  81. </exclusion>
  82. </exclusions>
  83. </dependency>
  84. <!-- service -->
  85. <dependency>
  86. <groupId>com.hotent</groupId>
  87. <artifactId>service</artifactId>
  88. <version>${project.version}</version>
  89. </dependency>
  90. <!-- table -->
  91. <dependency>
  92. <groupId>com.hotent</groupId>
  93. <artifactId>table</artifactId>
  94. <version>${parent.version}</version>
  95. </dependency>
  96. <!-- 二维码 -->
  97. <dependency>
  98. <groupId>com.google.zxing</groupId>
  99. <artifactId>core</artifactId>
  100. <version>3.3.0</version>
  101. </dependency>
  102. <!-- https://mvnrepository.com/artifact/com.google.zxing/javase -->
  103. <dependency>
  104. <groupId>com.google.zxing</groupId>
  105. <artifactId>javase</artifactId>
  106. <version>3.3.0</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.aliyun</groupId>
  110. <artifactId>dingtalk</artifactId>
  111. <version>1.1.86</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.aliyun</groupId>
  115. <artifactId>alibaba-dingtalk-service-sdk</artifactId>
  116. <version>2.0.0</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.dingtalk.open</groupId>
  120. <artifactId>app-stream-client</artifactId>
  121. <version>1.3.5</version>
  122. </dependency>
  123. <!-- <dependency>-->
  124. <!-- <groupId>com.dingtalk</groupId>-->
  125. <!-- <artifactId>libpi-oapi-encrpt</artifactId>-->
  126. <!-- <version>20181107</version>-->
  127. <!-- </dependency>-->
  128. <!-- <dependency>-->
  129. <!-- <groupId>com.dingtalk</groupId>-->
  130. <!-- <artifactId>libpi-oapi-encrpt</artifactId>-->
  131. <!-- <version>1.0.3</version>-->
  132. <!-- </dependency>-->
  133. <!-- <dependency>-->
  134. <!-- <groupId>com.alibaba</groupId>-->
  135. <!-- <artifactId>fastjson</artifactId>-->
  136. <!-- <version>1.2.6</version>-->
  137. <!-- </dependency>-->
  138. <dependency>
  139. <groupId>com.alibaba</groupId>
  140. <artifactId>fastjson</artifactId>
  141. <version>1.2.35</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.projectlombok</groupId>
  145. <artifactId>lombok</artifactId>
  146. </dependency>
  147. <!-- <dependency>-->
  148. <!-- <groupId>com.hotent</groupId>-->
  149. <!-- <artifactId>auth-client</artifactId>-->
  150. <!-- <version>1.0.0</version>-->
  151. <!-- </dependency>-->
  152. </dependencies>
  153. <!-- 用于生成jar文件 -->
  154. <build>
  155. <finalName>uc</finalName>
  156. <plugins>
  157. <plugin>
  158. <groupId>org.springframework.boot</groupId>
  159. <artifactId>spring-boot-maven-plugin</artifactId>
  160. <version>${spring.boot.version}</version>
  161. <configuration>
  162. <mainClass>com.hotent.uc.Application</mainClass>
  163. <layout>JAR</layout>
  164. </configuration>
  165. <executions>
  166. <execution>
  167. <goals>
  168. <goal>repackage</goal>
  169. </goals>
  170. <configuration>
  171. <attach>false</attach>
  172. <classifier>boot</classifier>
  173. </configuration>
  174. </execution>
  175. </executions>
  176. </plugin>
  177. </plugins>
  178. </build>
  179. </project>