pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>3.2.5</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.shulead</groupId>
  12. <artifactId>datasync</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>datasync</name>
  15. <description>datasync</description>
  16. <properties>
  17. <java.version>21</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.mysql</groupId>
  26. <artifactId>mysql-connector-j</artifactId>
  27. <scope>runtime</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.projectlombok</groupId>
  31. <artifactId>lombok</artifactId>
  32. <optional>true</optional>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-test</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.baomidou</groupId>
  41. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  42. <version>3.5.6</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.github.yulichang</groupId>
  46. <artifactId>mybatis-plus-join-boot-starter</artifactId>
  47. <version>1.4.12</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.aliyun</groupId>
  51. <artifactId>dingtalk</artifactId>
  52. <version>2.1.17</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.alibaba.fastjson2</groupId>
  56. <artifactId>fastjson2</artifactId>
  57. <version>2.0.49</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.aliyun</groupId>
  61. <artifactId>alibaba-dingtalk-service-sdk</artifactId>
  62. <version>2.0.0</version>
  63. </dependency>
  64. <!-- https://mvnrepository.com/artifact/com.baomidou/dynamic-datasource-spring-boot-starter -->
  65. <dependency>
  66. <groupId>com.baomidou</groupId>
  67. <artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
  68. <version>4.3.0</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>cn.hutool</groupId>
  72. <artifactId>hutool-all</artifactId>
  73. <version>5.8.27</version>
  74. </dependency>
  75. <!--引入第三方jaxrpc jar -->
  76. <dependency>
  77. <groupId>javax.xml</groupId>
  78. <artifactId>activation</artifactId>
  79. <version>1.0</version>
  80. <scope>system</scope>
  81. <systemPath>${pom.basedir}/javax/activation.jar</systemPath>
  82. </dependency>
  83. <dependency>
  84. <groupId>javax.xml</groupId>
  85. <artifactId>axis</artifactId>
  86. <version>1.0</version>
  87. <scope>system</scope>
  88. <systemPath>${pom.basedir}/javax/axis.jar</systemPath>
  89. </dependency>
  90. <dependency>
  91. <groupId>javax.xml</groupId>
  92. <artifactId>axis-ant</artifactId>
  93. <version>1.0</version>
  94. <scope>system</scope>
  95. <systemPath>${pom.basedir}/javax/axis-ant.jar</systemPath>
  96. </dependency>
  97. <dependency>
  98. <groupId>javax.xml</groupId>
  99. <artifactId>bsf</artifactId>
  100. <version>1.0</version>
  101. <scope>system</scope>
  102. <systemPath>${pom.basedir}/javax/bsf.jar</systemPath>
  103. </dependency>
  104. <dependency>
  105. <groupId>javax.xml</groupId>
  106. <artifactId>castor</artifactId>
  107. <version>1.0</version>
  108. <scope>system</scope>
  109. <systemPath>${pom.basedir}/javax/castor-0.9.5.2.jar</systemPath>
  110. </dependency>
  111. <dependency>
  112. <groupId>javax.xml</groupId>
  113. <artifactId>commons-codec</artifactId>
  114. <version>1.0</version>
  115. <scope>system</scope>
  116. <systemPath>${pom.basedir}/javax/commons-codec-1.2.jar</systemPath>
  117. </dependency>
  118. <dependency>
  119. <groupId>javax.xml</groupId>
  120. <artifactId>commons-discovery</artifactId>
  121. <version>1.0</version>
  122. <scope>system</scope>
  123. <systemPath>${pom.basedir}/javax/commons-discovery-0.2.jar</systemPath>
  124. </dependency>
  125. <dependency>
  126. <groupId>javax.xml</groupId>
  127. <artifactId>commons-httpclient</artifactId>
  128. <version>1.0</version>
  129. <scope>system</scope>
  130. <systemPath>${pom.basedir}/javax/commons-httpclient-3.0-rc2.jar</systemPath>
  131. </dependency>
  132. <dependency>
  133. <groupId>javax.xml</groupId>
  134. <artifactId>commons-logging</artifactId>
  135. <version>1.0</version>
  136. <scope>system</scope>
  137. <systemPath>${pom.basedir}/javax/commons-logging-1.0.4.jar</systemPath>
  138. </dependency>
  139. <dependency>
  140. <groupId>javax.xml</groupId>
  141. <artifactId>commons-net</artifactId>
  142. <version>1.0</version>
  143. <scope>system</scope>
  144. <systemPath>${pom.basedir}/javax/commons-net-1.0.0-dev.jar</systemPath>
  145. </dependency>
  146. <dependency>
  147. <groupId>javax.xml</groupId>
  148. <artifactId>httpunit</artifactId>
  149. <version>1.0</version>
  150. <scope>system</scope>
  151. <systemPath>${pom.basedir}/javax/httpunit.jar</systemPath>
  152. </dependency>
  153. <dependency>
  154. <groupId>javax.xml</groupId>
  155. <artifactId>ibmjsse</artifactId>
  156. <version>1.0</version>
  157. <scope>system</scope>
  158. <systemPath>${pom.basedir}/javax/ibmjsse.jar</systemPath>
  159. </dependency>
  160. <dependency>
  161. <groupId>javax.xml</groupId>
  162. <artifactId>jms</artifactId>
  163. <version>1.0</version>
  164. <scope>system</scope>
  165. <systemPath>${pom.basedir}/javax/javax.jms.jar</systemPath>
  166. </dependency>
  167. <dependency>
  168. <groupId>javax.xml</groupId>
  169. <artifactId>jaxrpc</artifactId>
  170. <version>1.0</version>
  171. <scope>system</scope>
  172. <systemPath>${pom.basedir}/javax/jaxrpc.jar</systemPath>
  173. </dependency>
  174. <dependency>
  175. <groupId>javax.xml</groupId>
  176. <artifactId>JimiProClasses</artifactId>
  177. <version>1.0</version>
  178. <scope>system</scope>
  179. <systemPath>${pom.basedir}/javax/JimiProClasses.jar</systemPath>
  180. </dependency>
  181. <dependency>
  182. <groupId>javax.xml</groupId>
  183. <artifactId>junit</artifactId>
  184. <version>1.0</version>
  185. <scope>system</scope>
  186. <systemPath>${pom.basedir}/javax/junit-3.8.1.jar</systemPath>
  187. </dependency>
  188. <dependency>
  189. <groupId>javax.xml</groupId>
  190. <artifactId>log4j</artifactId>
  191. <version>1.0</version>
  192. <scope>system</scope>
  193. <systemPath>${pom.basedir}/javax/log4j-1.2.8.jar</systemPath>
  194. </dependency>
  195. <dependency>
  196. <groupId>javax.xml</groupId>
  197. <artifactId>mailapi</artifactId>
  198. <version>1.0</version>
  199. <scope>system</scope>
  200. <systemPath>${pom.basedir}/javax/mailapi_1_3_1.jar</systemPath>
  201. </dependency>
  202. <dependency>
  203. <groupId>javax.xml</groupId>
  204. <artifactId>saaj</artifactId>
  205. <version>1.0</version>
  206. <scope>system</scope>
  207. <systemPath>${pom.basedir}/javax/saaj.jar</systemPath>
  208. </dependency>
  209. <dependency>
  210. <groupId>javax.xml</groupId>
  211. <artifactId>servlet</artifactId>
  212. <version>1.0</version>
  213. <scope>system</scope>
  214. <systemPath>${pom.basedir}/javax/servlet.jar</systemPath>
  215. </dependency>
  216. <dependency>
  217. <groupId>javax.xml</groupId>
  218. <artifactId>wsdl4j</artifactId>
  219. <version>1.0</version>
  220. <scope>system</scope>
  221. <systemPath>${pom.basedir}/javax/wsdl4j-1.5.1.jar</systemPath>
  222. </dependency>
  223. <dependency>
  224. <groupId>javax.xml</groupId>
  225. <artifactId>xml-apis</artifactId>
  226. <version>1.0</version>
  227. <scope>system</scope>
  228. <systemPath>${pom.basedir}/javax/endorsed/xml-apis-2.6.2.jar</systemPath>
  229. </dependency>
  230. </dependencies>
  231. <build>
  232. <plugins>
  233. <plugin>
  234. <groupId>org.springframework.boot</groupId>
  235. <artifactId>spring-boot-maven-plugin</artifactId>
  236. <configuration>
  237. <excludes>
  238. <exclude>
  239. <groupId>org.projectlombok</groupId>
  240. <artifactId>lombok</artifactId>
  241. </exclude>
  242. </excludes>
  243. </configuration>
  244. </plugin>
  245. </plugins>
  246. <!-- <resources>-->
  247. <!-- <resource>-->
  248. <!-- <directory>libs</directory> &lt;!&ndash; 指定引入包的位置 一般写lib就可以 &ndash;&gt;-->
  249. <!-- <targetPath>/BOOT-INF/lib/</targetPath> &lt;!&ndash; 指定打包后的位置 一般写/BOOT-INF/lib/ 即可 &ndash;&gt;-->
  250. <!-- <includes>-->
  251. <!-- <include>activation.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  252. <!-- <include>axis.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  253. <!-- <include>axis-ant.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  254. <!-- <include>bsf.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  255. <!-- <include>castor-0.9.5.2.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  256. <!-- <include>commons-codec-1.2.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  257. <!-- <include>commons-discovery-0.2.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  258. <!-- <include>commons-httpclient-3.0-rc2.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  259. <!-- <include>commons-logging-1.0.4.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  260. <!-- <include>commons-net-1.0.0-dev.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  261. <!-- <include>httpunit.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  262. <!-- <include>ibmjsse.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  263. <!-- <include>javax.jms.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  264. <!-- <include>jaxrpc.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  265. <!-- <include>JimiProClasses.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  266. <!-- <include>junit-3.8.1.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  267. <!-- <include>log4j-1.2.8.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  268. <!-- <include>mailapi_1_3_1.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  269. <!-- <include>saaj.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  270. <!-- <include>servlet.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  271. <!-- <include>wsdl4j-1.5.1.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  272. <!-- <include>xml-apis-2.6.2.jar</include> &lt;!&ndash; jar包名称 &ndash;&gt;-->
  273. <!-- </includes>-->
  274. <!-- </resource>-->
  275. <!-- <resource>-->
  276. <!-- <directory>src/main/resources</directory> &lt;!&ndash; 指定打包时的资源路径(由于自己引入了本地jar所以需要指定一下位置,如果没有引入本地jar就不必配置系统会自动把maven引入的jar打包) &ndash;&gt;-->
  277. <!-- <includes>-->
  278. <!-- <include>**/*.*</include> &lt;!&ndash; 打包路径下的文件 这里*代表模糊匹配 &ndash;&gt;-->
  279. <!-- </includes>-->
  280. <!-- <filtering>false</filtering>-->
  281. <!-- </resource>-->
  282. <!-- </resources>-->
  283. </build>
  284. <repositories>
  285. <repository>
  286. <id>maven_central</id>
  287. <name>Maven Central</name>
  288. <url>https://repo.maven.apache.org/maven2/</url>
  289. </repository>
  290. </repositories>
  291. </project>