pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.lc.ibps.bpmn</groupId>
  6. <artifactId>ibps-bpmn-root</artifactId>
  7. <version>3.3.7-LC.RELEASE</version>
  8. <relativePath>../../pom.xml</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ibps-bpmn-plugin</artifactId>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.lc.ibps.base</groupId>
  18. <artifactId>ibps-base-service</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.lc.ibps.bpmnbase</groupId>
  22. <artifactId>ibps-bpmn-plugin-base</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.lc.ibps.model</groupId>
  26. <artifactId>ibps-org-model</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.lc.ibps.message</groupId>
  30. <artifactId>ibps-message-producer</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.lc.ibps.provider.base</groupId>
  34. <artifactId>ibps-provider-platform-api</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>junit</groupId>
  38. <artifactId>junit</artifactId>
  39. <scope>test</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>mysql</groupId>
  43. <artifactId>mysql-connector-java</artifactId>
  44. <scope>test</scope>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <plugins>
  49. <plugin>
  50. <artifactId>maven-compiler-plugin</artifactId>
  51. <version>3.3</version>
  52. <configuration>
  53. <source>1.8</source>
  54. <target>1.8</target>
  55. <encoding>UTF-8</encoding>
  56. </configuration>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. </project>