pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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.6.7</version>
  9. <relativePath/>
  10. </parent>
  11. <groupId>com.cnooc</groupId>
  12. <artifactId>edgeapp</artifactId>
  13. <version>1.0.0</version>
  14. <name>edge-app</name>
  15. <description>edge-app</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. <!-- io常用工具类 -->
  25. <dependency>
  26. <groupId>commons-io</groupId>
  27. <artifactId>commons-io</artifactId>
  28. <version>2.11.0</version>
  29. </dependency>
  30. <!-- 文件上传工具类 -->
  31. <dependency>
  32. <groupId>commons-fileupload</groupId>
  33. <artifactId>commons-fileupload</artifactId>
  34. <version>1.4</version>
  35. </dependency>
  36. <!-- Collection 增强Java集合框架 -->
  37. <dependency>
  38. <groupId>commons-collections</groupId>
  39. <artifactId>commons-collections</artifactId>
  40. <version>3.2.2</version>
  41. </dependency>
  42. <!-- JSON 解析器和生成器 -->
  43. <dependency>
  44. <groupId>com.alibaba</groupId>
  45. <artifactId>fastjson</artifactId>
  46. <version>1.2.78</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.auth0</groupId>
  50. <artifactId>java-jwt</artifactId>
  51. <version>3.8.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>cn.hutool</groupId>
  55. <artifactId>hutool-all</artifactId>
  56. <version>5.8.3</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.supcon.supos</groupId>
  60. <artifactId>eco-java-sdk</artifactId>
  61. <version>3.2.2</version>
  62. <scope>system</scope>
  63. <systemPath>${project.basedir}/src/main/resources/lib/eco-java-sdk-3.2.2.jar</systemPath>
  64. </dependency>
  65. <dependency>
  66. <groupId>io.minio</groupId>
  67. <artifactId>minio</artifactId>
  68. <version>6.0.13</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.projectlombok</groupId>
  72. <artifactId>lombok</artifactId>
  73. <version>1.18.12</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.commons</groupId>
  77. <artifactId>commons-lang3</artifactId>
  78. <version>3.9</version>
  79. </dependency>
  80. </dependencies>
  81. <build>
  82. <plugins>
  83. <plugin>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-maven-plugin</artifactId>
  86. <configuration>
  87. <includeSystemScope>true</includeSystemScope>
  88. </configuration>
  89. </plugin>
  90. </plugins>
  91. <resources>
  92. <!-- 打包resource里的项目配置文件 -->
  93. <resource>
  94. <directory>src/main/resources</directory>
  95. <includes>
  96. <include>resources/**</include>
  97. <include>static/**</include>
  98. <include>application.yml</include>
  99. <include>bluetron-saidk-sdk.properties</include>
  100. </includes>
  101. </resource>
  102. </resources>
  103. </build>
  104. </project>