pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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.6.3</version>
  10. <relativePath /> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.magicapi</groupId>
  13. <artifactId>magic-api</artifactId>
  14. <version>0.0.1</version>
  15. <name>magic-api</name>
  16. <description>Demo project for Spring Boot</description>
  17. <properties>
  18. <skipTests>true</skipTests>
  19. <java.version>1.8</java.version>
  20. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-jdbc</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>mysql</groupId>
  37. <artifactId>mysql-connector-java</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.ssssssss</groupId>
  41. <artifactId>magic-api-spring-boot-starter</artifactId>
  42. <version>1.7.5</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>cn.hutool</groupId>
  46. <artifactId>hutool-all</artifactId>
  47. <version>5.7.20</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.seleniumhq.selenium</groupId>
  51. <artifactId>selenium-java</artifactId>
  52. </dependency>
  53. <!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna -->
  54. <dependency>
  55. <groupId>net.java.dev.jna</groupId>
  56. <artifactId>jna</artifactId>
  57. <version>4.0.0</version>
  58. </dependency>
  59. <!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna-platform -->
  60. <dependency>
  61. <groupId>net.java.dev.jna</groupId>
  62. <artifactId>jna-platform</artifactId>
  63. <version>4.0.0</version>
  64. </dependency>
  65. <!-- https://mvnrepository.com/artifact/org.bytedeco/javacv-platform -->
  66. <dependency>
  67. <groupId>org.bytedeco</groupId>
  68. <artifactId>javacv-platform</artifactId>
  69. <version>1.5.7</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>jd.com</groupId>
  73. <artifactId>jl</artifactId>
  74. <version>1.0</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.jacob</groupId>
  78. <artifactId>jacob</artifactId>
  79. <version>1.20</version>
  80. </dependency>
  81. <!-- https://mvnrepository.com/artifact/com.alphacephei/vosk -->
  82. <dependency>
  83. <groupId>com.alphacephei</groupId>
  84. <artifactId>vosk</artifactId>
  85. <version>0.3.33</version>
  86. </dependency>
  87. <!-- https://mvnrepository.com/artifact/org.icepdf.os/icepdf-core -->
  88. <dependency>
  89. <groupId>org.icepdf.os</groupId>
  90. <artifactId>icepdf-core</artifactId>
  91. <version>6.1.2</version>
  92. </dependency>
  93. <!-- https://mvnrepository.com/artifact/org.icepdf.os/icepdf-viewer -->
  94. <dependency>
  95. <groupId>org.icepdf.os</groupId>
  96. <artifactId>icepdf-viewer</artifactId>
  97. <version>6.1.2</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-starter-test</artifactId>
  102. <scope>test</scope>
  103. </dependency>
  104. </dependencies>
  105. <build>
  106. <plugins>
  107. <!-- <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId>
  108. </plugin> -->
  109. <plugin>
  110. <groupId>org.apache.maven.plugins</groupId>
  111. <artifactId>maven-jar-plugin</artifactId>
  112. <configuration>
  113. <archive>
  114. <manifest>
  115. <addClasspath>true</addClasspath>
  116. <classpathPrefix>lib/</classpathPrefix>
  117. <mainClass>com.magicapi.MagicApiApplication</mainClass>
  118. </manifest>
  119. </archive>
  120. </configuration>
  121. </plugin>
  122. </plugins>
  123. </build>
  124. </project>