pom.xml 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  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.fs</groupId>
  7. <artifactId>fs</artifactId>
  8. <version>1.1.0</version>
  9. <dependencies>
  10. <dependency>
  11. <groupId>org.springframework</groupId>
  12. <artifactId>spring-context</artifactId>
  13. </dependency>
  14. </dependencies>
  15. <name>fs</name>
  16. <url>http://</url>
  17. <description>医药DTC平台</description>
  18. <properties>
  19. <fs.version>1.1.0</fs.version>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  22. <java.version>1.8</java.version>
  23. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  24. <mybatis.boot.version>1.3.2</mybatis.boot.version>
  25. <druid.version>1.1.22</druid.version>
  26. <bitwalker.version>1.19</bitwalker.version>
  27. <swagger.version>2.9.2</swagger.version>
  28. <kaptcha.version>2.3.2</kaptcha.version>
  29. <pagehelper.boot.version>1.2.5</pagehelper.boot.version>
  30. <fastjson.version>1.2.73</fastjson.version>
  31. <oshi.version>5.2.5</oshi.version>
  32. <jna.version>5.5.0</jna.version>
  33. <commons.io.version>2.5</commons.io.version>
  34. <commons.fileupload.version>1.3.3</commons.fileupload.version>
  35. <poi.version>3.17</poi.version>
  36. <velocity.version>1.7</velocity.version>
  37. <jwt.version>0.9.1</jwt.version>
  38. <ijapy.version>2.7.8</ijapy.version>
  39. </properties>
  40. <!-- 依赖声明 -->
  41. <dependencyManagement>
  42. <dependencies>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-dependencies</artifactId>
  46. <version>2.1.17.RELEASE</version>
  47. <type>pom</type>
  48. <scope>import</scope>
  49. </dependency>
  50. <!--阿里数据库连接池 -->
  51. <dependency>
  52. <groupId>com.alibaba</groupId>
  53. <artifactId>druid-spring-boot-starter</artifactId>
  54. <version>${druid.version}</version>
  55. </dependency>
  56. <!-- 解析客户端操作系统、浏览器等 -->
  57. <dependency>
  58. <groupId>eu.bitwalker</groupId>
  59. <artifactId>UserAgentUtils</artifactId>
  60. <version>${bitwalker.version}</version>
  61. </dependency>
  62. <!-- pagehelper 分页插件 -->
  63. <dependency>
  64. <groupId>com.github.pagehelper</groupId>
  65. <artifactId>pagehelper-spring-boot-starter</artifactId>
  66. <version>${pagehelper.boot.version}</version>
  67. </dependency>
  68. <!-- 获取系统信息 -->
  69. <dependency>
  70. <groupId>com.github.oshi</groupId>
  71. <artifactId>oshi-core</artifactId>
  72. <version>${oshi.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>net.java.dev.jna</groupId>
  76. <artifactId>jna</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>net.java.dev.jna</groupId>
  80. <artifactId>jna-platform</artifactId>
  81. </dependency>
  82. <!-- swagger2-->
  83. <dependency>
  84. <groupId>io.springfox</groupId>
  85. <artifactId>springfox-swagger2</artifactId>
  86. <version>${swagger.version}</version>
  87. <exclusions>
  88. <exclusion>
  89. <groupId>io.swagger</groupId>
  90. <artifactId>swagger-annotations</artifactId>
  91. </exclusion>
  92. <exclusion>
  93. <groupId>io.swagger</groupId>
  94. <artifactId>swagger-models</artifactId>
  95. </exclusion>
  96. </exclusions>
  97. </dependency>
  98. <!-- swagger2-UI-->
  99. <dependency>
  100. <groupId>io.springfox</groupId>
  101. <artifactId>springfox-swagger-ui</artifactId>
  102. <version>${swagger.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.github.xiaoymin</groupId>
  106. <artifactId>swagger-bootstrap-ui</artifactId>
  107. <version>1.9.3</version>
  108. </dependency>
  109. <!--io常用工具类 -->
  110. <dependency>
  111. <groupId>commons-io</groupId>
  112. <artifactId>commons-io</artifactId>
  113. <version>${commons.io.version}</version>
  114. </dependency>
  115. <!--文件上传工具类 -->
  116. <dependency>
  117. <groupId>commons-fileupload</groupId>
  118. <artifactId>commons-fileupload</artifactId>
  119. <version>${commons.fileupload.version}</version>
  120. </dependency>
  121. <!-- excel工具 -->
  122. <dependency>
  123. <groupId>org.apache.poi</groupId>
  124. <artifactId>poi-ooxml</artifactId>
  125. <version>${poi.version}</version>
  126. </dependency>
  127. <!--velocity代码生成使用模板 -->
  128. <dependency>
  129. <groupId>org.apache.velocity</groupId>
  130. <artifactId>velocity</artifactId>
  131. <version>${velocity.version}</version>
  132. </dependency>
  133. <!-- 阿里JSON解析器 -->
  134. <dependency>
  135. <groupId>com.alibaba</groupId>
  136. <artifactId>fastjson</artifactId>
  137. <version>${fastjson.version}</version>
  138. </dependency>
  139. <!--Token生成与解析-->
  140. <dependency>
  141. <groupId>io.jsonwebtoken</groupId>
  142. <artifactId>jjwt</artifactId>
  143. <version>${jwt.version}</version>
  144. </dependency>
  145. <!--验证码 -->
  146. <dependency>
  147. <groupId>com.github.penggle</groupId>
  148. <artifactId>kaptcha</artifactId>
  149. <version>${kaptcha.version}</version>
  150. </dependency>
  151. <!-- 定时任务-->
  152. <dependency>
  153. <groupId>com.fs</groupId>
  154. <artifactId>fs-service-quartz</artifactId>
  155. <version>${fs.version}</version>
  156. </dependency>
  157. <!-- 代码生成-->
  158. <dependency>
  159. <groupId>com.fs</groupId>
  160. <artifactId>fs-service-generator</artifactId>
  161. <version>${fs.version}</version>
  162. </dependency>
  163. <!-- 系统服务模块-->
  164. <dependency>
  165. <groupId>com.fs</groupId>
  166. <artifactId>fs-service-system</artifactId>
  167. <version>${fs.version}</version>
  168. </dependency>
  169. <!-- 通用工具-->
  170. <dependency>
  171. <groupId>com.fs</groupId>
  172. <artifactId>fs-common</artifactId>
  173. <version>${fs.version}</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>com.github.javen205</groupId>
  177. <artifactId>IJPay-All</artifactId>
  178. <version>${ijapy.version}</version>
  179. </dependency>
  180. </dependencies>
  181. </dependencyManagement>
  182. <modules>
  183. <module>fs-admin</module>
  184. <module>fs-service-system</module>
  185. <module>fs-service-quartz</module>
  186. <module>fs-service-generator</module>
  187. <module>fs-common</module>
  188. <module>fs-company-app</module>
  189. <module>fs-company</module>
  190. <module>fs-user-app</module>
  191. <module>fs-api</module>
  192. <module>fs-socket</module>
  193. </modules>
  194. <packaging>pom</packaging>
  195. <build>
  196. <plugins>
  197. <plugin>
  198. <groupId>org.apache.maven.plugins</groupId>
  199. <artifactId>maven-compiler-plugin</artifactId>
  200. <version>3.1</version>
  201. <configuration>
  202. <source>${java.version}</source>
  203. <target>${java.version}</target>
  204. <encoding>${project.build.sourceEncoding}</encoding>
  205. </configuration>
  206. </plugin>
  207. </plugins>
  208. </build>
  209. <repositories>
  210. <repository>
  211. <id>public</id>
  212. <name>aliyun nexus</name>
  213. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  214. <releases>
  215. <enabled>true</enabled>
  216. </releases>
  217. </repository>
  218. </repositories>
  219. <pluginRepositories>
  220. <pluginRepository>
  221. <id>public</id>
  222. <name>aliyun nexus</name>
  223. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  224. <releases>
  225. <enabled>true</enabled>
  226. </releases>
  227. <snapshots>
  228. <enabled>false</enabled>
  229. </snapshots>
  230. </pluginRepository>
  231. </pluginRepositories>
  232. </project>