pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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-api</artifactId>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.lc.ibps.api</groupId>
  18. <artifactId>ibps-api-base</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.lc.ibps.persist</groupId>
  22. <artifactId>ibps-persist-core</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.lc.ibps.api</groupId>
  26. <artifactId>ibps-api-form</artifactId>
  27. <exclusions>
  28. <exclusion>
  29. <groupId>com.lc.ibps.api</groupId>
  30. <artifactId>ibps-api-base</artifactId>
  31. </exclusion>
  32. </exclusions>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.lc.ibps.api</groupId>
  36. <artifactId>ibps-api-bo</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.model</groupId>
  46. <artifactId>ibps-bo-model</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.lc.ibps.base</groupId>
  50. <artifactId>ibps-base-framework</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.lc.ibps.base</groupId>
  54. <artifactId>ibps-base-framework-ddd</artifactId>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <plugins>
  59. <plugin>
  60. <artifactId>maven-compiler-plugin</artifactId>
  61. <version>3.3</version>
  62. <configuration>
  63. <source>1.8</source>
  64. <target>1.8</target>
  65. <encoding>UTF-8</encoding>
  66. </configuration>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>