pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright (c) 2018-2025, scis All rights reserved.
  4. ~
  5. ~ Redistribution and use in source and binary forms, with or without
  6. ~ modification, are permitted provided that the following conditions are met:
  7. ~
  8. ~ Redistributions of source code must retain the above copyright notice,
  9. ~ this list of conditions and the following disclaimer.
  10. ~ Redistributions in binary form must reproduce the above copyright
  11. ~ notice, this list of conditions and the following disclaimer in the
  12. ~ documentation and/or other materials provided with the distribution.
  13. ~ Neither the name of the pig4cloud.com developer nor the names of its
  14. ~ contributors may be used to endorse or promote products derived from
  15. ~ this software without specific prior written permission.
  16. ~ Author: scis
  17. -->
  18. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  19. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  20. <modelVersion>4.0.0</modelVersion>
  21. <parent>
  22. <groupId>com.jmcloud</groupId>
  23. <artifactId>scis-visual</artifactId>
  24. <version>3.10.0</version>
  25. </parent>
  26. <artifactId>scis-oa-platform</artifactId>
  27. <packaging>jar</packaging>
  28. <description>工作流管理模块</description>
  29. <dependencies>
  30. <!--注册中心客户端-->
  31. <dependency>
  32. <groupId>com.alibaba.cloud</groupId>
  33. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  34. </dependency>
  35. <!--配置中心客户端-->
  36. <dependency>
  37. <groupId>com.alibaba.cloud</groupId>
  38. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  39. </dependency>
  40. <!--common code -->
  41. <dependency>
  42. <groupId>com.jmcloud</groupId>
  43. <artifactId>scis-common-core</artifactId>
  44. </dependency>
  45. <!--数据依赖-->
  46. <dependency>
  47. <groupId>com.jmcloud</groupId>
  48. <artifactId>scis-common-data</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.jmcloud</groupId>
  52. <artifactId>scis-upms-api</artifactId>
  53. </dependency>
  54. <!--sentinel-->
  55. <dependency>
  56. <groupId>com.jmcloud</groupId>
  57. <artifactId>scis-common-sentinel</artifactId>
  58. </dependency>
  59. <!--灰度支持-->
  60. <dependency>
  61. <groupId>com.jmcloud</groupId>
  62. <artifactId>scis-common-gray</artifactId>
  63. </dependency>
  64. <!--mybatis-->
  65. <dependency>
  66. <groupId>com.baomidou</groupId>
  67. <artifactId>mybatis-plus-boot-starter</artifactId>
  68. </dependency>
  69. <!-- druid 连接池 -->
  70. <dependency>
  71. <groupId>com.alibaba</groupId>
  72. <artifactId>druid-spring-boot-starter</artifactId>
  73. </dependency>
  74. <!--websocket-->
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-websocket</artifactId>
  78. </dependency>
  79. <!-- activiti -->
  80. <dependency>
  81. <groupId>org.activiti</groupId>
  82. <artifactId>activiti-spring-boot-starter-basic</artifactId>
  83. <version>${activiti.version}</version>
  84. <exclusions>
  85. <exclusion>
  86. <groupId>org.mybatis</groupId>
  87. <artifactId>mybatis</artifactId>
  88. </exclusion>
  89. </exclusions>
  90. </dependency>
  91. <dependency>
  92. <groupId>mysql</groupId>
  93. <artifactId>mysql-connector-java</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.activiti</groupId>
  97. <artifactId>activiti-modeler</artifactId>
  98. <version>${activiti.version}</version>
  99. <exclusions>
  100. <exclusion>
  101. <groupId>org.springframework.security</groupId>
  102. <artifactId>spring-security-config</artifactId>
  103. </exclusion>
  104. <exclusion>
  105. <groupId>org.springframework.security</groupId>
  106. <artifactId>spring-security-web</artifactId>
  107. </exclusion>
  108. </exclusions>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.activiti</groupId>
  112. <artifactId>activiti-diagram-rest</artifactId>
  113. <version>${activiti.version}</version>
  114. <exclusions>
  115. <exclusion>
  116. <groupId>org.springframework.security</groupId>
  117. <artifactId>spring-security-config</artifactId>
  118. </exclusion>
  119. <exclusion>
  120. <groupId>org.springframework.security</groupId>
  121. <artifactId>spring-security-web</artifactId>
  122. </exclusion>
  123. </exclusions>
  124. </dependency>
  125. <!--web 模块-->
  126. <dependency>
  127. <groupId>org.springframework.boot</groupId>
  128. <artifactId>spring-boot-starter-web</artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.jmcloud</groupId>
  132. <artifactId>scis-common-swagger</artifactId>
  133. </dependency>
  134. <dependency>
  135. <groupId>com.jmcloud</groupId>
  136. <artifactId>scis-common-security</artifactId>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.jmcloud</groupId>
  140. <artifactId>scis-common-feign</artifactId>
  141. </dependency>
  142. <!--undertow容器-->
  143. <dependency>
  144. <groupId>org.springframework.boot</groupId>
  145. <artifactId>spring-boot-starter-undertow</artifactId>
  146. </dependency>
  147. </dependencies>
  148. <build>
  149. <plugins>
  150. <plugin>
  151. <groupId>org.springframework.boot</groupId>
  152. <artifactId>spring-boot-maven-plugin</artifactId>
  153. </plugin>
  154. <plugin>
  155. <groupId>io.fabric8</groupId>
  156. <artifactId>docker-maven-plugin</artifactId>
  157. <configuration>
  158. <skip>false</skip>
  159. </configuration>
  160. </plugin>
  161. </plugins>
  162. <resources>
  163. <resource>
  164. <directory>src/main/resources</directory>
  165. <filtering>true</filtering>
  166. <excludes>
  167. <exclude>**/*.woff</exclude>
  168. </excludes>
  169. </resource>
  170. <resource>
  171. <directory>src/main/resources</directory>
  172. <filtering>false</filtering>
  173. <includes>
  174. <include>**/*.woff</include>
  175. </includes>
  176. </resource>
  177. </resources>
  178. </build>
  179. </project>