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