pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.3.1.RELEASE</version>
  10. <relativePath /> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.zj</groupId>
  13. <artifactId>EasyMedia</artifactId>
  14. <version>1.2.0</version>
  15. <name>EasyMedia</name>
  16. <description>一款简单的流媒体服务</description>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-devtools</artifactId>
  28. <optional>true</optional>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.projectlombok</groupId>
  32. <artifactId>lombok</artifactId>
  33. <optional>true</optional>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-test</artifactId>
  38. <scope>test</scope>
  39. <exclusions>
  40. <exclusion>
  41. <groupId>org.junit.vintage</groupId>
  42. <artifactId>junit-vintage-engine</artifactId>
  43. </exclusion>
  44. </exclusions>
  45. </dependency>
  46. <!-- 全量引入 ,包含ffmpeg、opencv等 -->
  47. <!-- <dependency> <groupId>org.bytedeco</groupId> <artifactId>javacv-platform</artifactId>
  48. <version>1.5.5</version> </dependency> -->
  49. <!-- 媒体只用到以下两个 -->
  50. <dependency>
  51. <groupId>org.bytedeco</groupId>
  52. <artifactId>javacv</artifactId>
  53. <version>1.5.5</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.bytedeco</groupId>
  57. <artifactId>ffmpeg-platform</artifactId>
  58. <version>4.3.2-1.5.5</version>
  59. </dependency>
  60. <!-- 工具包 -->
  61. <dependency>
  62. <groupId>cn.hutool</groupId>
  63. <artifactId>hutool-all</artifactId>
  64. <version>5.3.3</version>
  65. </dependency>
  66. <!-- netty -->
  67. <dependency>
  68. <groupId>io.netty</groupId>
  69. <artifactId>netty-all</artifactId>
  70. <version>4.1.59.Final</version>
  71. </dependency>
  72. <!-- h2驱动 -->
  73. <dependency>
  74. <groupId>com.h2database</groupId>
  75. <artifactId>h2</artifactId>
  76. <scope>runtime</scope>
  77. </dependency>
  78. <!-- jpa -->
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-data-jpa</artifactId>
  82. </dependency>
  83. <!-- mybatisplus -->
  84. <dependency>
  85. <groupId>com.baomidou</groupId>
  86. <artifactId>mybatis-plus-boot-starter</artifactId>
  87. <version>3.4.3.1</version>
  88. </dependency>
  89. <!-- 云台控制sdk需要 -->
  90. <dependency>
  91. <groupId>com.jna</groupId>
  92. <artifactId>jna</artifactId>
  93. <version>1.0.0</version>
  94. <scope>system</scope>
  95. <systemPath>${project.basedir}/sdk/jna.jar</systemPath>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.examples</groupId>
  99. <artifactId>examples</artifactId>
  100. <version>1.0.0</version>
  101. <scope>system</scope>
  102. <systemPath>${project.basedir}/sdk/examples.jar</systemPath>
  103. </dependency>
  104. </dependencies>
  105. <build>
  106. <plugins>
  107. <plugin>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-maven-plugin</artifactId>
  110. <configuration>
  111. <includeSystemScope>true</includeSystemScope>
  112. </configuration>
  113. </plugin>
  114. </plugins>
  115. </build>
  116. </project>