pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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.message</groupId>
  6. <artifactId>ibps-message-producer-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-message-producer</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.base</groupId>
  20. <artifactId>ibps-base-web</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.lc.ibps.base</groupId>
  24. <artifactId>ibps-base-db</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.lc.ibps.base</groupId>
  28. <artifactId>ibps-base-service</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.lc.ibps.message</groupId>
  32. <artifactId>ibps-message-producer-rabbit</artifactId>
  33. </dependency>
  34. <!--
  35. <dependency>
  36. <groupId>com.lc.ibps.message</groupId>
  37. <artifactId>ibps-message-producer-kafka</artifactId>
  38. </dependency>
  39. -->
  40. <dependency>
  41. <groupId>javax.servlet</groupId>
  42. <artifactId>servlet-api</artifactId>
  43. <scope>provided</scope>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. <plugins>
  48. <plugin>
  49. <artifactId>maven-compiler-plugin</artifactId>
  50. <configuration>
  51. <source>1.8</source>
  52. <target>1.8</target>
  53. <fork>true</fork>
  54. <encoding>UTF-8</encoding>
  55. </configuration>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </project>