.flattened-pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.aivfo</groupId>
  7. <artifactId>aivfo-business-parent</artifactId>
  8. <version>1.2.0-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.aivfo</groupId>
  11. <artifactId>aivfo-data-transmission</artifactId>
  12. <version>2.2.3.0-SNAPSHOT</version>
  13. <packaging>pom</packaging>
  14. <modules>
  15. <module>aivfo-data-transmission-mapper</module>
  16. <module>aivfo-data-transmission-entity</module>
  17. <module>aivfo-data-transmission-service</module>
  18. <module>aivfo-data-transmission-service-impl</module>
  19. <module>aivfo-data-transmission-manage</module>
  20. <module>aivfo-data-transmission-controller</module>
  21. <module>aivfo-data-transmission-lanucher</module>
  22. <module>aivfo-data-transmission-facade</module>
  23. <module>aivfo-data-transmission-rpc</module>
  24. </modules>
  25. <properties>
  26. <system.windowsx64>windows-x86_64</system.windowsx64>
  27. <system.linuxx64>linux-x86_64</system.linuxx64>
  28. <aivfo-tl-control-facade.version>2.2.4.0-SNAPSHOT</aivfo-tl-control-facade.version>
  29. <javacv.version>1.5.9</javacv.version>
  30. </properties>
  31. <dependencyManagement>
  32. <dependencies>
  33. <dependency>
  34. <groupId>com.aivfo</groupId>
  35. <artifactId>aivfo-data-transmission-controller</artifactId>
  36. <version>${project.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.aivfo</groupId>
  40. <artifactId>aivfo-data-transmission-entity</artifactId>
  41. <version>${project.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.aivfo</groupId>
  45. <artifactId>aivfo-data-transmission-facade</artifactId>
  46. <version>${project.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.aivfo</groupId>
  50. <artifactId>aivfo-data-transmission-lanucher</artifactId>
  51. <version>${project.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.aivfo</groupId>
  55. <artifactId>aivfo-data-transmission-manage</artifactId>
  56. <version>${project.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.aivfo</groupId>
  60. <artifactId>aivfo-data-transmission-mapper</artifactId>
  61. <version>${project.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.aivfo</groupId>
  65. <artifactId>aivfo-data-transmission-rpc</artifactId>
  66. <version>${project.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.aivfo</groupId>
  70. <artifactId>aivfo-data-transmission-service</artifactId>
  71. <version>${project.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.aivfo</groupId>
  75. <artifactId>aivfo-data-transmission-service-impl</artifactId>
  76. <version>${project.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.aivfo</groupId>
  80. <artifactId>aivfo-tl-control-facade</artifactId>
  81. <version>${aivfo-tl-control-facade.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.bytedeco</groupId>
  85. <artifactId>javacv</artifactId>
  86. <version>${javacv.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.bytedeco</groupId>
  90. <artifactId>javacpp-platform</artifactId>
  91. <version>${javacv.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.bytedeco</groupId>
  95. <artifactId>ffmpeg</artifactId>
  96. <version>6.0-${javacv.version}</version>
  97. <classifier>${system.windowsx64}</classifier>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.bytedeco</groupId>
  101. <artifactId>ffmpeg</artifactId>
  102. <version>6.0-${javacv.version}</version>
  103. <classifier>${system.linuxx64}</classifier>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.apache.kafka</groupId>
  107. <artifactId>kafka-clients</artifactId>
  108. <version>3.4.0</version>
  109. </dependency>
  110. </dependencies>
  111. </dependencyManagement>
  112. </project>