pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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.parent</groupId>
  6. <artifactId>ibps-starter-parent</artifactId>
  7. <version>3.3.7-LC.RELEASE</version>
  8. <relativePath />
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.lc.ibps.provider.base</groupId>
  12. <artifactId>ibps-provider-base-root</artifactId>
  13. <packaging>pom</packaging>
  14. <modules>
  15. <module>modules/provider-platform-api</module>
  16. <module>modules/provider-platform-client</module>
  17. <module>modules/provider-form-api</module>
  18. <module>modules/provider-form-client</module>
  19. <module>modules/provider-bpmn-api</module>
  20. <module>modules/provider-bpmn-client</module>
  21. </modules>
  22. <properties>
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. </properties>
  25. <dependencyManagement>
  26. <dependencies>
  27. </dependencies>
  28. </dependencyManagement>
  29. <build>
  30. <plugins>
  31. <plugin>
  32. <artifactId>maven-clean-plugin</artifactId>
  33. <version>3.0.0</version>
  34. <configuration>
  35. <source>1.8</source>
  36. <target>1.8</target>
  37. <encoding>UTF-8</encoding>
  38. </configuration>
  39. </plugin>
  40. <plugin>
  41. <artifactId>maven-compiler-plugin</artifactId>
  42. <version>3.3</version>
  43. <configuration>
  44. <source>1.8</source>
  45. <target>1.8</target>
  46. <fork>true</fork>
  47. <encoding>UTF-8</encoding>
  48. </configuration>
  49. </plugin>
  50. <plugin>
  51. <artifactId>maven-deploy-plugin</artifactId>
  52. <version>2.8</version>
  53. <configuration>
  54. <source>1.8</source>
  55. <target>1.8</target>
  56. <fork>true</fork>
  57. <encoding>UTF-8</encoding>
  58. </configuration>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. </project>