pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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.cloud.base</groupId>
  12. <artifactId>ibps-comp-base-root</artifactId>
  13. <packaging>pom</packaging>
  14. <modules>
  15. <module>modules/comp-file-server-api</module>
  16. <module>modules/comp-file-server-client</module>
  17. <module>modules/comp-socket-api</module>
  18. <module>modules/comp-socket-client</module>
  19. <module>modules/comp-report-api</module>
  20. <module>modules/comp-report-client</module>
  21. <module>modules/comp-message-server-api</module>
  22. <module>modules/comp-message-server-client</module>
  23. </modules>
  24. <properties>
  25. </properties>
  26. <dependencyManagement>
  27. <dependencies>
  28. </dependencies>
  29. </dependencyManagement>
  30. <dependencies>
  31. </dependencies>
  32. <build>
  33. <plugins>
  34. <plugin>
  35. <artifactId>maven-clean-plugin</artifactId>
  36. <version>3.0.0</version>
  37. <configuration>
  38. <source>1.8</source>
  39. <target>1.8</target>
  40. <encoding>UTF-8</encoding>
  41. </configuration>
  42. </plugin>
  43. <plugin>
  44. <artifactId>maven-compiler-plugin</artifactId>
  45. <version>3.3</version>
  46. <configuration>
  47. <source>1.8</source>
  48. <target>1.8</target>
  49. <fork>true</fork>
  50. <encoding>UTF-8</encoding>
  51. </configuration>
  52. </plugin>
  53. <plugin>
  54. <artifactId>maven-deploy-plugin</artifactId>
  55. <version>2.8</version>
  56. <configuration>
  57. <source>1.8</source>
  58. <target>1.8</target>
  59. <fork>true</fork>
  60. <encoding>UTF-8</encoding>
  61. </configuration>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. </project>