pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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.provider.base</groupId>
  6. <artifactId>ibps-provider-base-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-provider-bpmn-client</artifactId>
  12. <properties>
  13. <java.version>1.8</java.version>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <maven.compiler.target>1.8</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.lc.ibps.cloud</groupId>
  20. <artifactId>ibps-basic-client</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.lc.ibps.provider.base</groupId>
  24. <artifactId>ibps-provider-bpmn-api</artifactId>
  25. </dependency>
  26. </dependencies>
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <artifactId>maven-clean-plugin</artifactId>
  31. <version>3.0.0</version>
  32. <configuration>
  33. <source>1.8</source>
  34. <target>1.8</target>
  35. <encoding>UTF-8</encoding>
  36. </configuration>
  37. </plugin>
  38. <plugin>
  39. <artifactId>maven-compiler-plugin</artifactId>
  40. <version>3.3</version>
  41. <configuration>
  42. <source>1.8</source>
  43. <target>1.8</target>
  44. <fork>true</fork>
  45. <encoding>UTF-8</encoding>
  46. </configuration>
  47. </plugin>
  48. </plugins>
  49. </build>
  50. </project>