影像解译
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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. <parent>
  6. <artifactId>ruoyi</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>3.8.5</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>ruoyi-admin</artifactId>
  13. <description>
  14. web服务入口
  15. </description>
  16. <dependencies>
  17. <!-- spring-boot-devtools -->
  18. <!-- <dependency>-->
  19. <!-- <groupId>org.springframework.boot</groupId>-->
  20. <!-- <artifactId>spring-boot-devtools</artifactId>-->
  21. <!-- <optional>true</optional> &lt;!&ndash; 表示依赖不会传递 &ndash;&gt;-->
  22. <!-- </dependency>-->
  23. <!-- spring-boot使用jetty容器配置begin -->
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. <!-- 排除默认的tomcat,引入jetty容器. -->
  28. <exclusions>
  29. <exclusion>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-tomcat</artifactId>
  32. </exclusion>
  33. </exclusions>
  34. </dependency>
  35. <!-- jetty 容器. -->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-jetty</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.eclipse.jetty</groupId>
  42. <artifactId>jetty-jsp</artifactId>
  43. <version>9.2.30.v20200428</version>
  44. </dependency>
  45. <!-- swagger3-->
  46. <dependency>
  47. <groupId>io.springfox</groupId>
  48. <artifactId>springfox-boot-starter</artifactId>
  49. </dependency>
  50. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  51. <dependency>
  52. <groupId>io.swagger</groupId>
  53. <artifactId>swagger-models</artifactId>
  54. <version>1.6.8</version>
  55. </dependency>
  56. <!-- Mysql驱动包 -->
  57. <dependency>
  58. <groupId>mysql</groupId>
  59. <artifactId>mysql-connector-java</artifactId>
  60. </dependency>
  61. <!-- sqlite3驱动包 -->
  62. <dependency>
  63. <groupId>org.xerial</groupId>
  64. <artifactId>sqlite-jdbc</artifactId>
  65. <version>3.40.1.0</version>
  66. </dependency>
  67. <!-- 核心模块-->
  68. <dependency>
  69. <groupId>com.ruoyi</groupId>
  70. <artifactId>ruoyi-framework</artifactId>
  71. </dependency>
  72. <!-- 定时任务-->
  73. <dependency>
  74. <groupId>com.ruoyi</groupId>
  75. <artifactId>ruoyi-quartz</artifactId>
  76. </dependency>
  77. <!-- 代码生成-->
  78. <dependency>
  79. <groupId>com.ruoyi</groupId>
  80. <artifactId>ruoyi-generator</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.alibaba</groupId>
  84. <artifactId>fastjson</artifactId>
  85. <version>1.2.83</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>cn.hutool</groupId>
  89. <artifactId>hutool-all</artifactId>
  90. <version>5.8.15</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.google.code.gson</groupId>
  94. <artifactId>gson</artifactId>
  95. <version>2.10.1</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.gdal</groupId>
  99. <artifactId>gdal</artifactId>
  100. <version>3.7.4</version>
  101. <scope>system</scope>
  102. <systemPath>${project.basedir}/${gdal.bindir}/gdal.jar</systemPath>
  103. </dependency>
  104. <dependency>
  105. <groupId>io.paddle.serving.client</groupId>
  106. <artifactId>paddle-serving-sdk-java</artifactId>
  107. <version>0.0.1</version>
  108. <scope>system</scope>
  109. <systemPath>${project.basedir}/${paddle.bindir}/paddle-serving-sdk-java-0.0.1.jar</systemPath>
  110. </dependency>
  111. </dependencies>
  112. <repositories>
  113. <repository>
  114. <id>osgeo</id>
  115. <name>OSGeo Release Repository</name>
  116. <url>https://repo.osgeo.org/repository/release/</url>
  117. <snapshots><enabled>false</enabled></snapshots>
  118. <releases><enabled>true</enabled></releases>
  119. </repository>
  120. </repositories>
  121. <build>
  122. <plugins>
  123. <plugin>
  124. <groupId>org.springframework.boot</groupId>
  125. <artifactId>spring-boot-maven-plugin</artifactId>
  126. <version>2.1.1.RELEASE</version>
  127. <configuration>
  128. <includeSystemScope>true</includeSystemScope>
  129. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  130. </configuration>
  131. <executions>
  132. <execution>
  133. <goals>
  134. <goal>repackage</goal>
  135. </goals>
  136. </execution>
  137. </executions>
  138. </plugin>
  139. <plugin>
  140. <groupId>org.apache.maven.plugins</groupId>
  141. <artifactId>maven-war-plugin</artifactId>
  142. <version>3.1.0</version>
  143. <configuration>
  144. <failOnMissingWebXml>false</failOnMissingWebXml>
  145. <warName>${project.artifactId}</warName>
  146. </configuration>
  147. </plugin>
  148. </plugins>
  149. <finalName>${project.artifactId}</finalName>
  150. </build>
  151. <properties>
  152. <gdal.bindir>src/main/resources/gdal</gdal.bindir>
  153. <paddle.bindir>src/main/resources/paddle</paddle.bindir>
  154. </properties>
  155. </project>