pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. <parent>
  7. <groupId>com.srm.bpm</groupId>
  8. <artifactId>bpm-pom</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>bpm-client-base</artifactId>
  12. <version>${parent.version}</version>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.srm.bpm</groupId>
  16. <artifactId>data</artifactId>
  17. <version>0.0.1-SNAPSHOT</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>hu.blackbelt.bundles.poi</groupId>
  21. <artifactId>org.apache.poi</artifactId>
  22. <version>4.0.1_1</version>
  23. <scope>compile</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.mapstruct</groupId>
  27. <artifactId>mapstruct</artifactId>
  28. <version>${mapstruct.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework</groupId>
  32. <artifactId>spring-web</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.seata</groupId>
  36. <artifactId>seata-spring-boot-starter</artifactId>
  37. <version>1.4.2</version>
  38. <scope>compile</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.tomcat.embed</groupId>
  42. <artifactId>tomcat-embed-core</artifactId>
  43. <scope>compile</scope>
  44. </dependency>
  45. </dependencies>
  46. </project>