pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.ruoyi</groupId>
  7. <artifactId>rpa-license</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <java.version>1.8</java.version>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  13. <spring-boot.version>2.6.13</spring-boot.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-quartz</artifactId>
  19. </dependency>
  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-devtools</artifactId>
  27. <scope>runtime</scope>
  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. </dependency>
  40. <dependency>
  41. <groupId>com.google.code.gson</groupId>
  42. <artifactId>gson</artifactId>
  43. <version>2.10.1</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.bouncycastle</groupId>
  47. <artifactId>bcprov-jdk15on</artifactId>
  48. <version>1.69</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.commons</groupId>
  52. <artifactId>commons-lang3</artifactId>
  53. <version>3.12.0</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>junit</groupId>
  57. <artifactId>junit</artifactId>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>junit</groupId>
  62. <artifactId>junit</artifactId>
  63. <version>4.13.2</version>
  64. <scope>test</scope>
  65. </dependency>
  66. <!-- https://mvnrepository.com/artifact/io.springfox/springfox-boot-starter -->
  67. <dependency>
  68. <groupId>org.apache.commons</groupId>
  69. <artifactId>commons-dbcp2</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.freemarker</groupId>
  73. <artifactId>freemarker</artifactId>
  74. <version>2.3.33</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.microsoft.onnxruntime</groupId>
  78. <artifactId>onnxruntime</artifactId>
  79. <version>1.14.0</version>
  80. </dependency>
  81. <!-- <dependency>-->
  82. <!-- <groupId>commons-io</groupId>-->
  83. <!-- <artifactId>commons-io</artifactId>-->
  84. <!-- <version>2.11.0</version>-->
  85. <!-- </dependency>-->
  86. <dependency>
  87. <groupId>com.alibaba</groupId>
  88. <artifactId>fastjson</artifactId>
  89. <version>1.2.83</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.documents4j</groupId>
  93. <artifactId>documents4j-local</artifactId>
  94. <version>1.1.12</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.documents4j</groupId>
  98. <artifactId>documents4j-transformer-msoffice-word</artifactId>
  99. <version>1.1.12</version>
  100. </dependency>
  101. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
  102. <dependency>
  103. <groupId>cn.hutool</groupId>
  104. <artifactId>hutool-all</artifactId>
  105. <version>5.8.32</version>
  106. </dependency>
  107. <!--easyExcel -->
  108. <!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
  109. <dependency>
  110. <groupId>org.python</groupId>
  111. <artifactId>jython-standalone</artifactId>
  112. <version>2.7.2</version>
  113. </dependency>
  114. <!-- SpringBoot 拦截器 -->
  115. <dependency>
  116. <groupId>org.springframework.boot</groupId>
  117. <artifactId>spring-boot-starter-aop</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.github.oshi</groupId>
  121. <artifactId>oshi-core</artifactId>
  122. <version>6.6.5</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-starter-websocket</artifactId>
  127. </dependency>
  128. </dependencies>
  129. <dependencyManagement>
  130. <dependencies>
  131. <dependency>
  132. <groupId>org.springframework.boot</groupId>
  133. <artifactId>spring-boot-dependencies</artifactId>
  134. <version>${spring-boot.version}</version>
  135. <type>pom</type>
  136. <scope>import</scope>
  137. </dependency>
  138. </dependencies>
  139. </dependencyManagement>
  140. <build>
  141. <plugins>
  142. <plugin>
  143. <groupId>org.apache.maven.plugins</groupId>
  144. <artifactId>maven-compiler-plugin</artifactId>
  145. <version>3.8.1</version>
  146. <configuration>
  147. <source>1.8</source>
  148. <target>1.8</target>
  149. <encoding>UTF-8</encoding>
  150. </configuration>
  151. </plugin>
  152. <plugin>
  153. <groupId>org.springframework.boot</groupId>
  154. <artifactId>spring-boot-maven-plugin</artifactId>
  155. <version>${spring-boot.version}</version>
  156. <configuration>
  157. <mainClass>com.ruoyi.business.Main</mainClass>
  158. <executable>true</executable>
  159. <layout>ZIP</layout>
  160. <excludeGroupIds>
  161. org.python
  162. </excludeGroupIds>
  163. </configuration>
  164. <executions>
  165. <execution>
  166. <id>repackage</id>
  167. <goals>
  168. <goal>repackage</goal>
  169. </goals>
  170. </execution>
  171. </executions>
  172. </plugin>
  173. </plugins>
  174. </build>
  175. </project>