pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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.2.4.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.example</groupId>
  12. <artifactId>hkDemo</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>hkDemo</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-test</artifactId>
  31. <scope>test</scope>
  32. <exclusions>
  33. <exclusion>
  34. <groupId>org.junit.vintage</groupId>
  35. <artifactId>junit-vintage-engine</artifactId>
  36. </exclusion>
  37. </exclusions>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-websocket</artifactId>
  42. </dependency>
  43. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  44. <dependency>
  45. <groupId>com.alibaba</groupId>
  46. <artifactId>fastjson</artifactId>
  47. <version>1.2.62</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>cn.hutool</groupId>
  51. <artifactId>hutool-all</artifactId>
  52. <version>5.1.2</version>
  53. </dependency>
  54. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  55. <dependency>
  56. <groupId>org.apache.commons</groupId>
  57. <artifactId>commons-lang3</artifactId>
  58. <version>3.9</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.projectlombok</groupId>
  62. <artifactId>lombok</artifactId>
  63. <version>1.18.6</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>FFmpeg</groupId>
  67. <artifactId>FFmpeg</artifactId>
  68. <version>1.0</version>
  69. <scope>system</scope>
  70. <systemPath>${basedir}/src/main/resources/lib/hk/FFmpeg-1.0.jar</systemPath>
  71. </dependency>
  72. <dependency>
  73. <groupId>examples</groupId>
  74. <artifactId>examples</artifactId>
  75. <version>1.0</version>
  76. <scope>system</scope>
  77. <systemPath>${basedir}/src/main/resources/lib/hk/examples.jar</systemPath>
  78. </dependency>
  79. <dependency>
  80. <groupId>jna</groupId>
  81. <artifactId>jna</artifactId>
  82. <version>1.0</version>
  83. <scope>system</scope>
  84. <systemPath>${basedir}/src/main/resources/lib/hk/jna.jar</systemPath>
  85. </dependency>
  86. </dependencies>
  87. <repositories>
  88. </repositories>
  89. <build>
  90. <plugins>
  91. <plugin>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-maven-plugin</artifactId>
  94. </plugin>
  95. </plugins>
  96. </build>
  97. </project>