pom.xml 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  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. <artifactId>spring-boot-sb-base</artifactId>
  7. <groupId>com.platform</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>platform-activiti</artifactId>
  12. <properties>
  13. <spring-booot-aop.version>2.1.6.RELEASE</spring-booot-aop.version>
  14. <spring-data-commons.version>2.1.6.RELEASE</spring-data-commons.version>
  15. <mysql-connector.version>5.1.35</mysql-connector.version>
  16. <java-connector.version>11.2.0.3</java-connector.version>
  17. <mybatis-springboot.version>2.0.1</mybatis-springboot.version>
  18. <druid-springboot.version>1.1.17</druid-springboot.version>
  19. <pagehelper.version>1.2.3</pagehelper.version>
  20. <mapper.starter.version>2.1.5</mapper.starter.version>
  21. <pagehelper.starter.version>1.2.5</pagehelper.starter.version>
  22. <activiti.version>5.22.0</activiti.version>
  23. </properties>
  24. <dependencies>
  25. <dependency>
  26. <groupId>com.platform</groupId>
  27. <artifactId>platform-common</artifactId>
  28. <version>1.0-SNAPSHOT</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.platform</groupId>
  32. <artifactId>platform-dao</artifactId>
  33. <version>1.0-SNAPSHOT</version>
  34. </dependency>
  35. <!--<dependency>-->
  36. <!--<groupId>org.mybatis</groupId>-->
  37. <!--<artifactId>mybatis-typehandlers-jsr310</artifactId>-->
  38. <!--<version>1.0.2</version>-->
  39. <!--</dependency>-->
  40. <!--&lt;!&ndash; Mybatis &ndash;&gt;-->
  41. <!--<dependency>-->
  42. <!--<groupId>org.mybatis.spring.boot</groupId>-->
  43. <!--<artifactId>mybatis-spring-boot-starter</artifactId>-->
  44. <!--<version>${mybatis-springboot.version}</version>-->
  45. <!--<exclusions>-->
  46. <!--<exclusion>-->
  47. <!--<groupId>org.slf4j</groupId>-->
  48. <!--<artifactId>slf4j-api</artifactId>-->
  49. <!--</exclusion>-->
  50. <!--<exclusion>-->
  51. <!--<groupId>org.apache.tomcat</groupId>-->
  52. <!--<artifactId>tomcat-jdbc</artifactId>-->
  53. <!--</exclusion>-->
  54. <!--<exclusion>-->
  55. <!--<groupId>org.apache.tomcat</groupId>-->
  56. <!--<artifactId>tomcat-juli</artifactId>-->
  57. <!--</exclusion>-->
  58. <!--<exclusion>-->
  59. <!--<artifactId>spring-beans</artifactId>-->
  60. <!--<groupId>org.springframework</groupId>-->
  61. <!--</exclusion>-->
  62. <!--<exclusion>-->
  63. <!--<artifactId>spring-core</artifactId>-->
  64. <!--<groupId>org.springframework</groupId>-->
  65. <!--</exclusion>-->
  66. <!--<exclusion>-->
  67. <!--<artifactId>spring-boot-autoconfigure</artifactId>-->
  68. <!--<groupId>org.springframework.boot</groupId>-->
  69. <!--</exclusion>-->
  70. <!--<exclusion>-->
  71. <!--<artifactId>spring-boot-starter</artifactId>-->
  72. <!--<groupId>org.springframework.boot</groupId>-->
  73. <!--</exclusion>-->
  74. <!--<exclusion>-->
  75. <!--<artifactId>spring-boot-starter-jdbc</artifactId>-->
  76. <!--<groupId>org.springframework.boot</groupId>-->
  77. <!--</exclusion>-->
  78. <!--</exclusions>-->
  79. <!--</dependency>-->
  80. <!--&lt;!&ndash;mapper&ndash;&gt;-->
  81. <!--<dependency>-->
  82. <!--<groupId>tk.mybatis</groupId>-->
  83. <!--<artifactId>mapper-spring-boot-starter</artifactId>-->
  84. <!--<version>${mapper.starter.version}</version>-->
  85. <!--<exclusions>-->
  86. <!--<exclusion>-->
  87. <!--<artifactId>mybatis</artifactId>-->
  88. <!--<groupId>org.mybatis</groupId>-->
  89. <!--</exclusion>-->
  90. <!--<exclusion>-->
  91. <!--<artifactId>mybatis-spring</artifactId>-->
  92. <!--<groupId>org.mybatis</groupId>-->
  93. <!--</exclusion>-->
  94. <!--<exclusion>-->
  95. <!--<artifactId>spring-boot-autoconfigure</artifactId>-->
  96. <!--<groupId>org.springframework.boot</groupId>-->
  97. <!--</exclusion>-->
  98. <!--<exclusion>-->
  99. <!--<artifactId>spring-boot-starter</artifactId>-->
  100. <!--<groupId>org.springframework.boot</groupId>-->
  101. <!--</exclusion>-->
  102. <!--<exclusion>-->
  103. <!--<artifactId>spring-beans</artifactId>-->
  104. <!--<groupId>org.springframework</groupId>-->
  105. <!--</exclusion>-->
  106. <!--<exclusion>-->
  107. <!--<artifactId>spring-core</artifactId>-->
  108. <!--<groupId>org.springframework</groupId>-->
  109. <!--</exclusion>-->
  110. <!--</exclusions>-->
  111. <!--</dependency>-->
  112. <!--&lt;!&ndash;<dependency>&ndash;&gt;-->
  113. <!--<dependency>-->
  114. <!--<groupId>com.github.pagehelper</groupId>-->
  115. <!--<artifactId>pagehelper-spring-boot-starter</artifactId>-->
  116. <!--<version>${pagehelper.version}</version>-->
  117. <!--<exclusions>-->
  118. <!--<exclusion>-->
  119. <!--<artifactId>mybatis-spring-boot-starter</artifactId>-->
  120. <!--<groupId>org.mybatis.spring.boot</groupId>-->
  121. <!--</exclusion>-->
  122. <!--<exclusion>-->
  123. <!--<artifactId>spring-boot-autoconfigure</artifactId>-->
  124. <!--<groupId>org.springframework.boot</groupId>-->
  125. <!--</exclusion>-->
  126. <!--<exclusion>-->
  127. <!--<artifactId>spring-boot-starter</artifactId>-->
  128. <!--<groupId>org.springframework.boot</groupId>-->
  129. <!--</exclusion>-->
  130. <!--</exclusions>-->
  131. <!--</dependency>-->
  132. <!--&lt;!&ndash; Druid &ndash;&gt;-->
  133. <!--<dependency>-->
  134. <!--<groupId>com.alibaba</groupId>-->
  135. <!--<artifactId>druid-spring-boot-starter</artifactId>-->
  136. <!--<version>${druid-springboot.version}</version>-->
  137. <!--<exclusions>-->
  138. <!--<exclusion>-->
  139. <!--<artifactId>spring-boot</artifactId>-->
  140. <!--<groupId>org.springframework.boot</groupId>-->
  141. <!--</exclusion>-->
  142. <!--<exclusion>-->
  143. <!--<artifactId>spring-boot-autoconfigure</artifactId>-->
  144. <!--<groupId>org.springframework.boot</groupId>-->
  145. <!--</exclusion>-->
  146. <!--</exclusions>-->
  147. <!--</dependency>-->
  148. <!--<dependency>-->
  149. <!--<groupId>javax.persistence</groupId>-->
  150. <!--<artifactId>persistence-api</artifactId>-->
  151. <!--<version>1.0</version>-->
  152. <!--</dependency>-->
  153. <!--&lt;!&ndash; https://mvnrepository.com/artifact/org.json/json &ndash;&gt;-->
  154. <!--<dependency>-->
  155. <!--<groupId>org.json</groupId>-->
  156. <!--<artifactId>json</artifactId>-->
  157. <!--<version>20180130</version>-->
  158. <!--</dependency>-->
  159. <!--<dependency>-->
  160. <!--<groupId>org.springframework.data</groupId>-->
  161. <!--<artifactId>spring-data-commons</artifactId>-->
  162. <!--<version>${spring-data-commons.version}</version>-->
  163. <!--</dependency>-->
  164. <!--&lt;!&ndash;Lombok&ndash;&gt;-->
  165. <!--<dependency>-->
  166. <!--<groupId>org.projectlombok</groupId>-->
  167. <!--<artifactId>lombok</artifactId>-->
  168. <!--<version>${lombok.version}</version>-->
  169. <!--<scope>provided</scope>-->
  170. <!--</dependency>-->
  171. <!--&lt;!&ndash; https://mvnrepository.com/artifact/javax.servlet/servlet-api &ndash;&gt;-->
  172. <!--<dependency>-->
  173. <!--<groupId>javax.servlet</groupId>-->
  174. <!--<artifactId>servlet-api</artifactId>-->
  175. <!--<version>2.5</version>-->
  176. <!--<scope>provided</scope>-->
  177. <!--</dependency>-->
  178. <dependency>
  179. <groupId>org.mybatis</groupId>
  180. <artifactId>mybatis-typehandlers-jsr310</artifactId>
  181. <version>1.0.2</version>
  182. </dependency>
  183. <!-- Mybatis -->
  184. <dependency>
  185. <groupId>org.mybatis.spring.boot</groupId>
  186. <artifactId>mybatis-spring-boot-starter</artifactId>
  187. <version>${mybatis-springboot.version}</version>
  188. <exclusions>
  189. <exclusion>
  190. <groupId>org.slf4j</groupId>
  191. <artifactId>slf4j-api</artifactId>
  192. </exclusion>
  193. <exclusion>
  194. <groupId>org.apache.tomcat</groupId>
  195. <artifactId>tomcat-jdbc</artifactId>
  196. </exclusion>
  197. <exclusion>
  198. <groupId>org.apache.tomcat</groupId>
  199. <artifactId>tomcat-juli</artifactId>
  200. </exclusion>
  201. <exclusion>
  202. <artifactId>spring-beans</artifactId>
  203. <groupId>org.springframework</groupId>
  204. </exclusion>
  205. <exclusion>
  206. <artifactId>spring-core</artifactId>
  207. <groupId>org.springframework</groupId>
  208. </exclusion>
  209. <exclusion>
  210. <artifactId>spring-boot-autoconfigure</artifactId>
  211. <groupId>org.springframework.boot</groupId>
  212. </exclusion>
  213. <exclusion>
  214. <artifactId>spring-boot-starter</artifactId>
  215. <groupId>org.springframework.boot</groupId>
  216. </exclusion>
  217. <exclusion>
  218. <artifactId>spring-boot-starter-jdbc</artifactId>
  219. <groupId>org.springframework.boot</groupId>
  220. </exclusion>
  221. </exclusions>
  222. </dependency>
  223. <!--mapper-->
  224. <dependency>
  225. <groupId>tk.mybatis</groupId>
  226. <artifactId>mapper-spring-boot-starter</artifactId>
  227. <version>${mapper.starter.version}</version>
  228. <exclusions>
  229. <exclusion>
  230. <artifactId>mybatis</artifactId>
  231. <groupId>org.mybatis</groupId>
  232. </exclusion>
  233. <exclusion>
  234. <artifactId>mybatis-spring</artifactId>
  235. <groupId>org.mybatis</groupId>
  236. </exclusion>
  237. <exclusion>
  238. <artifactId>spring-boot-autoconfigure</artifactId>
  239. <groupId>org.springframework.boot</groupId>
  240. </exclusion>
  241. <exclusion>
  242. <artifactId>spring-boot-starter</artifactId>
  243. <groupId>org.springframework.boot</groupId>
  244. </exclusion>
  245. <exclusion>
  246. <artifactId>spring-beans</artifactId>
  247. <groupId>org.springframework</groupId>
  248. </exclusion>
  249. <exclusion>
  250. <artifactId>spring-core</artifactId>
  251. <groupId>org.springframework</groupId>
  252. </exclusion>
  253. </exclusions>
  254. </dependency>
  255. <!-- actviti begin-->
  256. <dependency>
  257. <groupId>org.activiti</groupId>
  258. <artifactId>activiti-engine</artifactId>
  259. <version>${activiti.version}</version>
  260. </dependency>
  261. <dependency>
  262. <groupId>org.activiti</groupId>
  263. <artifactId>activiti-spring</artifactId>
  264. <version>${activiti.version}</version>
  265. </dependency>
  266. <dependency>
  267. <groupId>org.activiti</groupId>
  268. <artifactId>activiti-modeler</artifactId>
  269. <version>${activiti.version}</version>
  270. </dependency>
  271. <dependency>
  272. <groupId>org.activiti</groupId>
  273. <artifactId>activiti-diagram-rest</artifactId>
  274. <version>${activiti.version}</version>
  275. </dependency>
  276. <dependency>
  277. <groupId>org.activiti</groupId>
  278. <artifactId>activiti-engine</artifactId>
  279. <version>${activiti.version}</version>
  280. </dependency>
  281. <dependency>
  282. <groupId>org.springframework</groupId>
  283. <artifactId>spring-context</artifactId>
  284. </dependency>
  285. <dependency>
  286. <groupId>org.springframework</groupId>
  287. <artifactId>spring-context-support</artifactId>
  288. </dependency>
  289. <dependency>
  290. <groupId>org.springframework.boot</groupId>
  291. <artifactId>spring-boot-starter-aop</artifactId>
  292. <version>2.1.6.RELEASE</version>
  293. <!-- 不会打入依赖 -->
  294. <scope>provided</scope>
  295. <exclusions>
  296. <exclusion>
  297. <artifactId>spring-beans</artifactId>
  298. <groupId>org.springframework</groupId>
  299. </exclusion>
  300. <exclusion>
  301. <artifactId>spring-core</artifactId>
  302. <groupId>org.springframework</groupId>
  303. </exclusion>
  304. <exclusion>
  305. <artifactId>slf4j-api</artifactId>
  306. <groupId>org.slf4j</groupId>
  307. </exclusion>
  308. </exclusions>
  309. </dependency>
  310. </dependencies>
  311. <build>
  312. <finalName>platform-activiti</finalName>
  313. <resources>
  314. <resource>
  315. <directory>src/main/java</directory>
  316. <includes>
  317. <include>**/*.yml</include>
  318. <include>**/*.properties</include>
  319. <include>**/*.xml</include>
  320. </includes>
  321. <filtering>false</filtering>
  322. </resource>
  323. <resource>
  324. <directory>src/main/resources</directory>
  325. <includes>
  326. <include>**/**</include>
  327. <!--<include>**/*.properties</include>-->
  328. <!--<include>**/*.xml</include>-->
  329. </includes>
  330. <filtering>false</filtering>
  331. </resource>
  332. </resources>
  333. </build>
  334. </project>