pom.xml 1.7 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <groupId>com.lc.ibps.parent</groupId>
  5. <artifactId>ibps-starter-parent</artifactId>
  6. <version>3.3.7-LC.RELEASE</version>
  7. <relativePath />
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <groupId>com.lc.ibps.common</groupId>
  11. <artifactId>ibps-common-root</artifactId>
  12. <packaging>pom</packaging>
  13. <modules>
  14. <module>modules/file-biz</module>
  15. <module>modules/msg-biz</module>
  16. <module>modules/org-biz</module>
  17. </modules>
  18. <properties>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. </properties>
  21. <dependencyManagement>
  22. <dependencies>
  23. </dependencies>
  24. </dependencyManagement>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.slf4j</groupId>
  28. <artifactId>slf4j-api</artifactId>
  29. </dependency>
  30. </dependencies>
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <artifactId>maven-clean-plugin</artifactId>
  35. <version>3.0.0</version>
  36. <configuration>
  37. <source>1.8</source>
  38. <target>1.8</target>
  39. <encoding>UTF-8</encoding>
  40. </configuration>
  41. </plugin>
  42. <plugin>
  43. <artifactId>maven-compiler-plugin</artifactId>
  44. <version>3.3</version>
  45. <configuration>
  46. <source>1.8</source>
  47. <target>1.8</target>
  48. <fork>true</fork>
  49. <encoding>UTF-8</encoding>
  50. </configuration>
  51. </plugin>
  52. <plugin>
  53. <artifactId>maven-deploy-plugin</artifactId>
  54. <version>2.8</version>
  55. <configuration>
  56. <source>1.8</source>
  57. <target>1.8</target>
  58. <fork>true</fork>
  59. <encoding>UTF-8</encoding>
  60. </configuration>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. </project>