pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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.bpmnbase</groupId>
  6. <artifactId>ibps-bpmnbase-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-base</artifactId>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.lc.ibps.bpmnbase</groupId>
  18. <artifactId>ibps-bpmn-api</artifactId>
  19. <exclusions>
  20. <exclusion>
  21. <groupId>*</groupId>
  22. <artifactId>*</artifactId>
  23. </exclusion>
  24. </exclusions>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.lc.ibps.api</groupId>
  28. <artifactId>ibps-api-base</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.lc.ibps.persist</groupId>
  32. <artifactId>ibps-persist-core</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.lc.ibps.api</groupId>
  36. <artifactId>ibps-api-form</artifactId>
  37. <exclusions>
  38. <exclusion>
  39. <groupId>com.lc.ibps.api</groupId>
  40. <artifactId>ibps-api-base</artifactId>
  41. </exclusion>
  42. </exclusions>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.lc.ibps.api</groupId>
  46. <artifactId>ibps-api-bo</artifactId>
  47. <exclusions>
  48. <exclusion>
  49. <groupId>com.lc.ibps.api</groupId>
  50. <artifactId>ibps-api-base</artifactId>
  51. </exclusion>
  52. </exclusions>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.lc.ibps.model</groupId>
  56. <artifactId>ibps-bo-model</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.lc.ibps.base</groupId>
  60. <artifactId>ibps-base-framework</artifactId>
  61. <exclusions>
  62. <exclusion>
  63. <groupId>com.lc.ibps.api</groupId>
  64. <artifactId>ibps-api-base</artifactId>
  65. </exclusion>
  66. </exclusions>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.jamesmurty.utils</groupId>
  70. <artifactId>java-xmlbuilder</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>junit</groupId>
  74. <artifactId>junit</artifactId>
  75. <scope>test</scope>
  76. </dependency>
  77. </dependencies>
  78. <build>
  79. <plugins>
  80. <plugin>
  81. <artifactId>maven-compiler-plugin</artifactId>
  82. <version>3.3</version>
  83. <configuration>
  84. <source>1.8</source>
  85. <target>1.8</target>
  86. <encoding>UTF-8</encoding>
  87. </configuration>
  88. </plugin>
  89. </plugins>
  90. </build>
  91. </project>