bpm-client-base-0.0.4.pom 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ The Hefei JingTong RDC(Research and Development Centre) Group.
  4. ~ __________________
  5. ~
  6. ~ Copyright 2015-2021
  7. ~ All Rights Reserved.
  8. ~
  9. ~ NOTICE: All information contained herein is, and remains
  10. ~ the property of JingTong Company and its suppliers,
  11. ~ if any.
  12. -->
  13. <project xmlns="http://maven.apache.org/POM/4.0.0"
  14. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  15. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  16. <modelVersion>4.0.0</modelVersion>
  17. <parent>
  18. <groupId>com.jingtong</groupId>
  19. <artifactId>base-bpm</artifactId>
  20. <version>0.0.4</version>
  21. </parent>
  22. <artifactId>bpm-client-base</artifactId>
  23. <version>${parent.version}</version>
  24. <dependencies>
  25. <dependency>
  26. <groupId>com.jingtong.common</groupId>
  27. <artifactId>data</artifactId>
  28. <version>0.0.1</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>hu.blackbelt.bundles.poi</groupId>
  32. <artifactId>org.apache.poi</artifactId>
  33. <version>4.0.1_1</version>
  34. <scope>compile</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.mapstruct</groupId>
  38. <artifactId>mapstruct</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework</groupId>
  42. <artifactId>spring-web</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>io.seata</groupId>
  46. <artifactId>seata-spring-boot-starter</artifactId>
  47. <version>1.4.2</version>
  48. <scope>compile</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.tomcat.embed</groupId>
  52. <artifactId>tomcat-embed-core</artifactId>
  53. <scope>compile</scope>
  54. </dependency>
  55. </dependencies>
  56. </project>