pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <groupId>com.lc.ibps.bpmn</groupId>
  5. <artifactId>ibps-bpmn-root</artifactId>
  6. <version>3.3.7-LC.RELEASE</version>
  7. <relativePath>../../pom.xml</relativePath>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>ibps-bpmn-act</artifactId>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.lc.ibps.message</groupId>
  17. <artifactId>ibps-message-producer</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.lc.ibps.bpmnbase</groupId>
  21. <artifactId>ibps-bpmn-api</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.activiti</groupId>
  25. <artifactId>activiti-spring</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.activiti</groupId>
  29. <artifactId>activiti-camel</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.activiti</groupId>
  33. <artifactId>ibps-activiti-bpmn-converter-5230</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.activiti</groupId>
  37. <artifactId>ibps-activiti-engine-5230</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.commons</groupId>
  41. <artifactId>commons-lang3</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>joda-time</groupId>
  45. <artifactId>joda-time</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>junit</groupId>
  49. <artifactId>junit</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>mysql</groupId>
  54. <artifactId>mysql-connector-java</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.lc.ibps.provider.base</groupId>
  59. <artifactId>ibps-provider-bpmn-api</artifactId>
  60. </dependency>
  61. </dependencies>
  62. <build>
  63. <plugins>
  64. <plugin>
  65. <artifactId>maven-compiler-plugin</artifactId>
  66. <version>3.3</version>
  67. <configuration>
  68. <source>1.8</source>
  69. <target>1.8</target>
  70. <encoding>UTF-8</encoding>
  71. </configuration>
  72. </plugin>
  73. </plugins>
  74. </build>
  75. </project>