pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. <dependency>
  81. <groupId>org.apache.pdfbox</groupId>
  82. <artifactId>pdfbox</artifactId>
  83. <version>2.0.4</version>
  84. </dependency>
  85. </dependencies>
  86. <build>
  87. <plugins>
  88. <plugin>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-maven-plugin</artifactId>
  91. <configuration>
  92. <includeSystemScope>true</includeSystemScope>
  93. </configuration>
  94. </plugin>
  95. </plugins>
  96. <resources>
  97. <!-- 打包resource里的项目配置文件 -->
  98. <resource>
  99. <directory>src/main/resources</directory>
  100. <includes>
  101. <include>resources/**</include>
  102. <include>static/**</include>
  103. <include>application.yml</include>
  104. <include>bluetron-saidk-sdk.properties</include>
  105. <include>application-local.yml</include>
  106. <include>application-develop.yml</include>
  107. <include>application-release.yml</include>
  108. <include>application-uat.yml</include>
  109. </includes>
  110. </resource>
  111. </resources>
  112. </build>
  113. </project>