pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.7.2</version>
  9. </parent>
  10. <groupId>top.panll.assist</groupId>
  11. <artifactId>wvp-pro-assist</artifactId>
  12. <version>2.6.9</version>
  13. <name>wvp-pro-assist</name>
  14. <description></description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. <maven.build.timestamp.format>MMddHHmm</maven.build.timestamp.format>
  18. <!-- <pagehelper.version>5.2.0</pagehelper.version>-->
  19. </properties>
  20. <repositories>
  21. <repository>
  22. <id>nexus-aliyun</id>
  23. <name>Nexus aliyun</name>
  24. <url>https://maven.aliyun.com/repository/public</url>
  25. <layout>default</layout>
  26. <snapshots>
  27. <enabled>false</enabled>
  28. </snapshots>
  29. <releases>
  30. <enabled>true</enabled>
  31. </releases>
  32. </repository>
  33. </repositories>
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-web</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-data-redis</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>net.bramp.ffmpeg</groupId>
  45. <artifactId>ffmpeg</artifactId>
  46. <version>0.6.2</version>
  47. </dependency>
  48. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  49. <dependency>
  50. <groupId>com.alibaba</groupId>
  51. <artifactId>fastjson</artifactId>
  52. <version>1.2.73</version>
  53. </dependency>
  54. <!--在线文档 -->
  55. <dependency>
  56. <groupId>org.springdoc</groupId>
  57. <artifactId>springdoc-openapi-ui</artifactId>
  58. <version>1.6.10</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.github.xiaoymin</groupId>
  62. <artifactId>knife4j-springdoc-ui</artifactId>
  63. <version>3.0.3</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.mp4parser</groupId>
  67. <artifactId>muxer</artifactId>
  68. <version>1.9.56</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.mp4parser</groupId>
  72. <artifactId>streaming</artifactId>
  73. <version>1.9.56</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.mp4parser</groupId>
  77. <artifactId>isoparser</artifactId>
  78. <version>1.9.27</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-starter-test</artifactId>
  83. <scope>test</scope>
  84. </dependency>
  85. </dependencies>
  86. <build>
  87. <finalName>${project.artifactId}-${project.version}-${maven.build.timestamp}</finalName>
  88. <plugins>
  89. <plugin>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-maven-plugin</artifactId>
  92. </plugin>
  93. <plugin>
  94. <groupId>org.apache.maven.plugins</groupId>
  95. <artifactId>maven-compiler-plugin</artifactId>
  96. <configuration>
  97. <source>1.8</source>
  98. <target>1.8</target>
  99. </configuration>
  100. </plugin>
  101. <plugin>
  102. <groupId>org.apache.maven.plugins</groupId>
  103. <artifactId>maven-surefire-plugin</artifactId>
  104. <configuration>
  105. <skipTests>true</skipTests>
  106. </configuration>
  107. </plugin>
  108. </plugins>
  109. </build>
  110. </project>